logback.2022-07-10.log 798 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912
  1. 00:01:56.571 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:06:56.594 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:11:56.609 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:16:56.635 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:21:56.651 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:26:56.672 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:31:56.693 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:36:56.715 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:41:56.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:46:52.664 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  11. 00:46:52.664 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  12. 00:46:52.680 [scheduled-thread-8] DEBUG org.hibernate.SQL - insert into control_panel_statistics (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, commission_amount, date, deposit_amount, transfer_amount, withdraw_amount) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  13. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  14. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 00:46:52 CST 2022]
  15. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
  16. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  17. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  18. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  19. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  20. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
  21. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  22. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [0E-10]
  23. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [0E-10]
  24. 00:46:52.680 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [0E-10]
  25. 00:46:56.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 00:51:56.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 00:56:56.806 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 01:01:56.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 01:06:56.847 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 01:11:56.869 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 01:16:56.891 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 01:21:56.911 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 01:26:56.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 01:31:56.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 01:36:56.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 01:41:57.013 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 01:46:52.838 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  38. 01:46:52.838 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  39. 01:46:57.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 01:51:57.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 01:56:57.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 02:01:57.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 02:06:57.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  44. 02:11:57.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  45. 02:16:57.134 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  46. 02:21:57.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  47. 02:26:57.177 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  48. 02:31:57.201 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  49. 02:36:57.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  50. 02:41:57.240 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  51. 02:46:53.008 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  52. 02:46:53.008 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  53. 02:46:57.258 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  54. 02:51:57.282 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  55. 02:56:57.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  56. 03:01:57.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  57. 03:06:57.356 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  58. 03:11:57.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  59. 03:16:57.405 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  60. 03:21:57.431 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  61. 03:26:57.444 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  62. 03:31:57.461 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  63. 03:36:57.478 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  64. 03:41:57.493 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  65. 03:46:53.176 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  66. 03:46:53.176 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  67. 03:46:57.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  68. 03:51:57.545 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  69. 03:56:57.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  70. 04:01:57.590 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  71. 04:06:57.617 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  72. 04:11:57.645 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  73. 04:16:57.672 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  74. 04:21:57.696 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  75. 04:26:57.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  76. 04:31:57.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  77. 04:36:57.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  78. 04:41:57.787 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  79. 04:46:53.342 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  80. 04:46:53.342 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  81. 04:46:57.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  82. 04:51:57.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  83. 04:56:57.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  84. 05:01:57.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  85. 05:06:57.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  86. 05:11:57.932 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  87. 05:16:57.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  88. 05:21:57.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  89. 05:26:58.013 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  90. 05:31:58.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  91. 05:36:58.065 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  92. 05:41:58.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  93. 05:46:53.507 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  94. 05:46:53.507 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  95. 05:46:58.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  96. 05:51:58.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  97. 05:56:58.134 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  98. 06:01:58.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  99. 06:06:58.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  100. 06:11:58.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  101. 06:16:58.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  102. 06:21:58.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  103. 06:26:58.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  104. 06:31:58.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  105. 06:36:58.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  106. 06:41:58.327 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  107. 06:46:53.676 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  108. 06:46:53.676 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  109. 06:46:58.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  110. 06:51:58.374 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  111. 06:56:58.395 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  112. 07:01:58.420 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  113. 07:06:58.442 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  114. 07:11:58.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  115. 07:16:58.486 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  116. 07:21:58.500 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  117. 07:26:58.522 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  118. 07:31:58.548 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  119. 07:36:58.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  120. 07:41:58.584 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  121. 07:46:53.840 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  122. 07:46:53.840 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  123. 07:46:58.606 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  124. 07:51:58.632 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  125. 07:56:58.647 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  126. 08:01:58.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  127. 08:06:58.682 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  128. 08:11:58.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  129. 08:16:58.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  130. 08:21:58.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  131. 08:26:58.775 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  132. 08:31:58.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  133. 08:36:58.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  134. 08:41:58.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  135. 08:46:54.009 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  136. 08:46:54.009 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  137. 08:46:58.884 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  138. 08:51:58.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  139. 08:56:58.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  140. 09:01:58.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  141. 09:06:58.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  142. 09:11:58.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  143. 09:16:59.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  144. 09:21:59.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  145. 09:26:59.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  146. 09:31:59.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  147. 09:36:59.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  148. 09:41:59.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  149. 09:46:54.186 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  150. 09:46:54.186 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  151. 09:46:59.139 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  152. 09:50:48.773 [http-nio-8500-exec-5] INFO o.a.coyote.http11.Http11Processor - Error parsing HTTP request header
  153. Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
  154. java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
  155. at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:476)
  156. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)
  157. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  158. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  159. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  160. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  161. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  162. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  163. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  164. at java.lang.Thread.run(Unknown Source)
  165. 09:51:59.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  166. 09:56:59.190 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  167. 10:01:59.217 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  168. 10:06:59.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  169. 10:11:59.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  170. 10:16:59.283 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  171. 10:21:59.303 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  172. 10:26:59.331 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  173. 10:31:59.354 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  174. 10:36:59.379 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  175. 10:41:59.401 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  176. 10:46:54.362 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  177. 10:46:54.362 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  178. 10:46:59.424 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  179. 10:51:59.450 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  180. 10:56:59.465 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  181. 11:01:59.478 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  182. 11:06:59.504 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  183. 11:11:59.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  184. 11:16:59.543 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  185. 11:21:59.567 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  186. 11:26:59.596 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  187. 11:31:59.623 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  188. 11:36:59.649 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  189. 11:41:59.672 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  190. 11:46:54.542 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  191. 11:46:54.542 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  192. 11:46:59.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  193. 11:51:59.725 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  194. 11:56:59.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  195. 12:01:59.764 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  196. 12:06:59.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  197. 12:11:59.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  198. 12:16:59.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  199. 12:21:59.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  200. 12:26:59.888 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  201. 12:31:59.903 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  202. 12:36:59.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  203. 12:41:59.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  204. 12:46:54.709 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  205. 12:46:54.709 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  206. 12:46:59.974 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  207. 12:51:59.998 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  208. 12:57:00.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  209. 13:02:00.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  210. 13:07:00.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  211. 13:12:00.093 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  212. 13:17:00.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  213. 13:22:00.137 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  214. 13:27:00.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  215. 13:32:00.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  216. 13:37:00.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  217. 13:42:00.236 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  218. 13:46:54.870 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  219. 13:46:54.870 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  220. 13:47:00.261 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  221. 13:52:00.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  222. 13:57:00.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  223. 14:02:00.331 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  224. 14:07:00.347 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  225. 14:12:00.370 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  226. 14:17:00.397 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  227. 14:22:00.419 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  228. 14:27:00.440 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  229. 14:27:37.097 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  230. 14:27:37.097 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
  231. 14:27:37.097 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  232. 14:27:37.097 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  233. 14:27:37.097 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  234. 14:27:37.113 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  235. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  236. 14:27:37.113 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  237. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  238. 14:27:37.113 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  239. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  240. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  241. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  242. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
  243. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
  244. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  245. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  246. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  247. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  248. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  249. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  250. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  251. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  252. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  253. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
  254. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  255. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  256. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  257. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  258. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  259. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [美国德克萨斯]
  260. 14:27:37.113 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [16.162.22.145]
  261. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 14:27:37 CST 2022]
  262. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  263. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  264. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  265. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  266. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  267. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  268. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  269. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  270. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  271. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
  272. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  273. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
  274. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  275. 14:27:37.128 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  276. 14:27:47.050 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  277. 14:27:56.003 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  278. 14:27:56.019 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  279. 14:28:10.769 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  280. 14:28:36.473 [http-nio-8500-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 (? , ?)
  281. 14:28:36.473 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  282. 14:28:36.473 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  283. 14:28:36.676 [http-nio-8500-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 (? , ?)
  284. 14:28:36.676 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  285. 14:28:36.676 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  286. 14:28:36.926 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  287. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  288. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  289. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  290. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  291. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  292. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  293. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  294. 14:28:36.926 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  295. 14:28:37.395 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  296. 14:28:37.426 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  297. 14:28:37.426 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  298. 14:28:37.613 [http-nio-8500-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_
  299. 14:28:37.629 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  300. 14:28:37.629 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  301. 14:28:43.270 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  302. 14:28:46.488 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_, userdepart0_.add_ip as add_ip2_94_, userdepart0_.add_time as add_time3_94_, userdepart0_.add_user as add_user4_94_, userdepart0_.modify_ip as modify_i5_94_, userdepart0_.modify_time as modify_t6_94_, userdepart0_.modify_user as modify_u7_94_, userdepart0_.note as note8_94_, userdepart0_.name as name9_94_, userdepart0_.role_number as role_nu10_94_, userdepart0_.sub_index as sub_ind11_94_ from user_department userdepart0_ order by userdepart0_.sub_index asc
  303. 14:28:46.551 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysactiont0_.id as id1_71_, sysactiont0_.add_ip as add_ip2_71_, sysactiont0_.add_time as add_time3_71_, sysactiont0_.add_user as add_user4_71_, sysactiont0_.modify_ip as modify_i5_71_, sysactiont0_.modify_time as modify_t6_71_, sysactiont0_.modify_user as modify_u7_71_, sysactiont0_.note as note8_71_, sysactiont0_.action as action9_71_, sysactiont0_.code as code10_71_, sysactiont0_.name as name11_71_, sysactiont0_.node_id as node_id12_71_, sysactiont0_.valid as valid13_71_ from sys_action sysactiont0_ order by sysactiont0_.code asc
  304. 14:28:46.582 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userrolede0_.id as id1_99_, userrolede0_.add_ip as add_ip2_99_, userrolede0_.add_time as add_time3_99_, userrolede0_.add_user as add_user4_99_, userrolede0_.modify_ip as modify_i5_99_, userrolede0_.modify_time as modify_t6_99_, userrolede0_.modify_user as modify_u7_99_, userrolede0_.note as note8_99_, userrolede0_.action_id as action_i9_99_, userrolede0_.node_id as node_id10_99_, userrolede0_.role_id as role_id11_99_ from user_role_detail userrolede0_ where userrolede0_.role_id=?
  305. 14:28:46.582 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1024]
  306. 14:29:06.739 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  307. 14:29:06.739 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  308. 14:30:33.601 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  309. 14:32:00.464 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  310. 14:35:41.863 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  311. 14:37:00.489 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  312. 14:39:07.069 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  313. 14:39:07.272 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  314. 14:39:07.272 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  315. 14:39:07.272 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  316. 14:39:07.287 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  317. 14:39:07.287 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  318. 14:39:07.287 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  319. 14:39:46.413 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  320. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  321. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  322. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  323. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  324. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  325. 14:39:46.413 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  326. 14:39:46.444 [http-nio-8500-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 (? , ?)
  327. 14:39:46.444 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  328. 14:39:46.444 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  329. 14:39:46.835 [http-nio-8500-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=?
  330. 14:39:46.835 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  331. 14:39:46.866 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  332. 14:39:46.866 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  333. 14:39:46.866 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  334. 14:39:47.225 [http-nio-8500-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_
  335. 14:39:47.225 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  336. 14:39:47.241 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  337. 14:39:47.257 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  338. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  339. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  340. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  341. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  342. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  343. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  344. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  345. 14:39:47.257 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  346. 14:39:47.616 [http-nio-8500-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 (? , ? , ? , ?)
  347. 14:39:47.616 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  348. 14:39:47.616 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  349. 14:39:47.616 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  350. 14:39:47.616 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  351. 14:39:47.678 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  352. 14:39:47.678 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  353. 14:39:47.678 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  354. 14:39:47.960 [http-nio-8500-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=?
  355. 14:39:47.960 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  356. 14:39:48.069 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  357. 14:39:48.335 [http-nio-8500-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 (? , ?)
  358. 14:39:48.335 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  359. 14:39:48.335 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  360. 14:41:39.836 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  361. 14:41:39.836 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  362. 14:42:00.509 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  363. 14:42:09.791 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  364. 14:42:09.791 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  365. 14:46:55.038 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  366. 14:46:55.038 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  367. 14:47:00.522 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  368. 14:47:41.773 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  369. 14:47:41.945 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  370. 14:47:41.945 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  371. 14:47:41.945 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  372. 14:47:41.960 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  373. 14:47:41.960 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  374. 14:47:41.960 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  375. 14:47:43.679 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  376. 14:47:43.679 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  377. 14:47:43.679 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  378. 14:47:43.695 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  379. 14:47:43.710 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  380. 14:47:43.976 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  381. 14:48:15.228 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  382. 14:50:06.733 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  383. 14:52:00.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  384. 14:52:22.865 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  385. 14:54:09.556 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  386. 14:54:09.556 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [4]
  387. 14:55:26.323 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  388. 14:55:26.323 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [4]
  389. 14:57:00.550 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  390. 14:58:33.723 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  391. 14:58:33.958 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  392. 14:58:33.973 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  393. 14:58:33.973 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  394. 14:58:33.973 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  395. 14:58:33.973 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  396. 14:58:33.973 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  397. 14:58:53.458 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  398. 14:58:53.474 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  399. 14:58:53.474 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  400. 14:58:53.474 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  401. 14:58:53.474 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  402. 14:58:53.474 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  403. 14:58:53.474 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  404. 14:58:53.474 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  405. 14:58:53.474 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  406. 14:58:53.770 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  407. 14:59:00.208 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.id=? limit ? for update
  408. 14:59:00.208 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  409. 14:59:00.224 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  410. 14:59:00.224 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  411. 14:59:00.224 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  412. 14:59:00.224 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  413. 14:59:00.239 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update custom_group set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, com_point=?, commission_valid=?, currency=?, group_type=?, name=?, platform=?, pos=?, rebate_valid=?, type=? where id=?
  414. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.116.212.127]
  415. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-05 14:19:10.0]
  416. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  417. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  418. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 14:59:00 CST 2022]
  419. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  420. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  421. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [MI3]
  422. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [20.0]
  423. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [INTEGER] - [1]
  424. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [USD]
  425. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1]
  426. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MI3]
  427. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [MT4]
  428. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [INTEGER] - [2]
  429. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [INTEGER] - [1]
  430. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1]
  431. 14:59:00.239 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [1]
  432. 14:59:00.458 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  433. 14:59:00.458 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  434. 14:59:00.458 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  435. 14:59:00.458 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  436. 14:59:00.458 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  437. 14:59:00.458 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  438. 14:59:41.818 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syssymbolt0_.id as id1_92_, syssymbolt0_.add_ip as add_ip2_92_, syssymbolt0_.add_time as add_time3_92_, syssymbolt0_.add_user as add_user4_92_, syssymbolt0_.modify_ip as modify_i5_92_, syssymbolt0_.modify_time as modify_t6_92_, syssymbolt0_.modify_user as modify_u7_92_, syssymbolt0_.note as note8_92_, syssymbolt0_.name as name9_92_ from sys_symbol_type syssymbolt0_
  439. 14:59:41.834 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syssymbols0_.id as id1_91_, syssymbols0_.add_ip as add_ip2_91_, syssymbols0_.add_time as add_time3_91_, syssymbols0_.add_user as add_user4_91_, syssymbols0_.modify_ip as modify_i5_91_, syssymbols0_.modify_time as modify_t6_91_, syssymbols0_.modify_user as modify_u7_91_, syssymbols0_.note as note8_91_, syssymbols0_.name as name9_91_, syssymbols0_.scale as scale10_91_ from sys_symbol_scale syssymbols0_
  440. 15:00:40.164 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syssymbolt0_.id as id1_92_, syssymbolt0_.add_ip as add_ip2_92_, syssymbolt0_.add_time as add_time3_92_, syssymbolt0_.add_user as add_user4_92_, syssymbolt0_.modify_ip as modify_i5_92_, syssymbolt0_.modify_time as modify_t6_92_, syssymbolt0_.modify_user as modify_u7_92_, syssymbolt0_.note as note8_92_, syssymbolt0_.name as name9_92_ from sys_symbol_type syssymbolt0_
  441. 15:00:40.180 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syssymbols0_.id as id1_91_, syssymbols0_.add_ip as add_ip2_91_, syssymbols0_.add_time as add_time3_91_, syssymbols0_.add_user as add_user4_91_, syssymbols0_.modify_ip as modify_i5_91_, syssymbols0_.modify_time as modify_t6_91_, syssymbols0_.modify_user as modify_u7_91_, syssymbols0_.note as note8_91_, syssymbols0_.name as name9_91_, syssymbols0_.scale as scale10_91_ from sys_symbol_scale syssymbols0_
  442. 15:02:00.313 [http-nio-8500-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 (? , ?)
  443. 15:02:00.313 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  444. 15:02:00.313 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  445. 15:02:00.485 [http-nio-8500-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 (? , ?)
  446. 15:02:00.485 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  447. 15:02:00.485 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  448. 15:02:00.501 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  449. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  450. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  451. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  452. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  453. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  454. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  455. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  456. 15:02:00.516 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  457. 15:02:00.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  458. 15:02:00.969 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  459. 15:02:00.969 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  460. 15:02:00.985 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  461. 15:02:01.126 [http-nio-8500-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_
  462. 15:02:01.126 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  463. 15:02:01.141 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  464. 15:03:42.987 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  465. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  466. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  467. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  468. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  469. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  470. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  471. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  472. 15:03:42.987 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  473. 15:04:00.300 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  474. 15:06:12.380 [http-nio-8500-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 (? , ?)
  475. 15:06:12.380 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  476. 15:06:12.380 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  477. 15:06:12.646 [http-nio-8500-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 (? , ?)
  478. 15:06:12.646 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  479. 15:06:12.646 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  480. 15:06:12.896 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  481. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  482. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  483. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  484. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  485. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  486. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  487. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  488. 15:06:12.896 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  489. 15:06:13.490 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  490. 15:06:13.490 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  491. 15:06:13.490 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  492. 15:06:13.568 [http-nio-8500-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_
  493. 15:06:13.568 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  494. 15:06:13.568 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  495. 15:06:55.287 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  496. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  497. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  498. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  499. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  500. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  501. 15:06:55.287 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  502. 15:06:55.334 [http-nio-8500-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 (? , ?)
  503. 15:06:55.334 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  504. 15:06:55.334 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  505. 15:06:55.693 [http-nio-8500-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=?
  506. 15:06:55.693 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  507. 15:06:55.740 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  508. 15:06:55.756 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  509. 15:06:55.756 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  510. 15:06:56.068 [http-nio-8500-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_
  511. 15:06:56.068 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  512. 15:06:56.068 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  513. 15:06:56.131 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  514. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  515. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  516. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  517. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  518. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  519. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  520. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  521. 15:06:56.131 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  522. 15:06:56.475 [http-nio-8500-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 (? , ? , ? , ?)
  523. 15:06:56.475 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  524. 15:06:56.475 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  525. 15:06:56.475 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  526. 15:06:56.475 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  527. 15:06:56.553 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  528. 15:06:56.553 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  529. 15:06:56.553 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  530. 15:06:56.756 [http-nio-8500-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=?
  531. 15:06:56.756 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  532. 15:06:57.006 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  533. 15:06:57.131 [http-nio-8500-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 (? , ?)
  534. 15:06:57.131 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  535. 15:06:57.131 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  536. 15:07:00.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  537. 15:12:00.625 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  538. 15:14:05.782 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysreasons0_.id as id1_85_, sysreasons0_.add_ip as add_ip2_85_, sysreasons0_.add_time as add_time3_85_, sysreasons0_.add_user as add_user4_85_, sysreasons0_.modify_ip as modify_i5_85_, sysreasons0_.modify_time as modify_t6_85_, sysreasons0_.modify_user as modify_u7_85_, sysreasons0_.note as note8_85_, sysreasons0_.content as content9_85_, sysreasons0_.en_content as en_cont10_85_, sysreasons0_.sub_index as sub_ind11_85_, sysreasons0_.type as type12_85_ from sys_reasons_refusal sysreasons0_ where sysreasons0_.id=? limit ?
  539. 15:14:05.782 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [105]
  540. 15:14:24.345 [http-nio-8500-exec-9] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@5738e549: startup date [Sun Jul 10 15:14:24 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@52a86356
  541. 15:14:24.408 [http-nio-8500-exec-9] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  542. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.config.ChainedDynamicProperty - Flipping property: EMAIL-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  543. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook installed for: NFLoadBalancer-PingTimer-EMAIL-SERVICE
  544. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.loadbalancer.BaseLoadBalancer - Client: EMAIL-SERVICE instantiated a LoadBalancer: DynamicServerListLoadBalancer:{NFLoadBalancer:name=EMAIL-SERVICE,current list of Servers=[],Load balancer stats=Zone stats: {},Server stats: []}ServerList:null
  545. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.l.DynamicServerListLoadBalancer - Using serverListUpdater PollingServerListUpdater
  546. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.config.ChainedDynamicProperty - Flipping property: EMAIL-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  547. 15:14:24.423 [http-nio-8500-exec-9] INFO c.n.l.DynamicServerListLoadBalancer - DynamicServerListLoadBalancer for client EMAIL-SERVICE initialized: DynamicServerListLoadBalancer:{NFLoadBalancer:name=EMAIL-SERVICE,current list of Servers=[103.148.58.88:8101],Load balancer stats=Zone stats: {defaultzone=[Zone:defaultzone; Instance count:1; Active connections count: 0; Circuit breaker tripped count: 0; Active connections per server: 0.0;]
  548. },Server stats: [[Server:103.148.58.88:8101; Zone:defaultZone; Total Requests:0; Successive connection failure:0; Total blackout seconds:0; Last connection made:Thu Jan 01 08:00:00 CST 1970; First connection made: Thu Jan 01 08:00:00 CST 1970; Active Connections:0; total failure count in last (1000) msecs:0; average resp time:0.0; 90 percentile resp time:0.0; 95 percentile resp time:0.0; min resp time:0.0; max resp time:0.0; stddev resp time:0.0]
  549. ]}ServerList:org.springframework.cloud.netflix.ribbon.eureka.DomainExtractingServerList@45876375
  550. 15:14:25.439 [PollingServerListUpdater-0] INFO c.n.config.ChainedDynamicProperty - Flipping property: EMAIL-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  551. 15:16:15.175 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  552. 15:16:15.175 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  553. 15:17:00.646 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  554. 15:22:00.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  555. 15:26:44.228 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  556. 15:26:44.243 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  557. 15:27:00.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  558. 15:27:25.654 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  559. 15:27:25.670 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  560. 15:28:38.440 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - insert into sys_reasons_refusal (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, content, en_content, sub_index, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  561. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  562. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 15:28:38 CST 2022]
  563. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  564. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  565. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  566. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  567. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  568. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [不想通过]
  569. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [NoWay]
  570. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [INTEGER] - [1]
  571. 15:28:38.440 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  572. 15:28:58.299 [http-nio-8500-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 ? for update
  573. 15:28:58.299 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  574. 15:28:58.330 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  575. 15:28:58.330 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  576. 15:28:58.330 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  577. 15:28:58.362 [http-nio-8500-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657438138346,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500005","V_NAME_V":"单 张","V_EMAIL_V":"985917589@qq.com","V_DATE_TIME_V":"2022-07-10 15:28:58"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"985917589@qq.com"}
  578. 15:28:58.393 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  579. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  580. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:20:03.0]
  581. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  582. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  583. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 15:28:58 CST 2022]
  584. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  585. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  586. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [105]
  587. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 10 15:28:58 CST 2022]
  588. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  589. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  590. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [北京颐和园]
  591. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  592. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  593. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-10 15:25:52.0]
  594. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  595. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2019-07-01 00:00:00.0]
  596. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500005]
  597. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  598. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  599. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [石景山]
  600. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  601. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  602. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  603. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  604. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [985917589@qq.com]
  605. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [单]
  606. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  607. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  608. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  609. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  610. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  611. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [45612131321213210]
  612. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  613. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国德克萨斯]
  614. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [16.162.22.145]
  615. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  616. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 15:20:04.0]
  617. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  618. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [san Zhang]
  619. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  620. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [efe428fcb094f2f84e71fa0d6c36bc0c]
  621. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15888888888]
  622. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [北京]
  623. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  624. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  625. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [410000]
  626. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [5]
  627. 15:28:58.409 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  628. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.199.244]
  629. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:24:52.0]
  630. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  631. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  632. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  633. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  634. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  635. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  636. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  637. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/5/info/0afd20d57ad041a0b93369a84d442c26.jpg]
  638. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  639. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  640. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [5]
  641. 15:28:58.409 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  642. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.199.244]
  643. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:25:04.0]
  644. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  645. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  646. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  647. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  648. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  649. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  650. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  651. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/5/info/5d83a49432a54ef1b99aa129c7bf0306.jpg]
  652. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  653. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  654. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [6]
  655. 15:28:58.409 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  656. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.199.244]
  657. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:25:25.0]
  658. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  659. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  660. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  661. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  662. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  663. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  664. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  665. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/5/info/67a79e16709042b890ae7ee7e495eb4d.jpg]
  666. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  667. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  668. 15:28:58.409 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [7]
  669. 15:30:08.743 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  670. 15:30:08.743 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  671. 15:31:51.620 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  672. 15:31:51.620 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  673. 15:32:00.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  674. 15:37:00.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  675. 15:38:46.105 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  676. 15:40:21.513 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  677. 15:40:21.513 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  678. 15:40:55.060 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  679. 15:40:55.060 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  680. 15:42:00.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  681. 15:42:27.609 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  682. 15:42:27.609 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  683. 15:43:33.735 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  684. 15:43:33.735 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  685. 15:43:36.032 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  686. 15:43:36.032 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  687. 15:46:32.429 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  688. 15:46:55.212 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  689. 15:46:55.212 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  690. 15:47:00.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  691. 15:47:25.353 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  692. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  693. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  694. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  695. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  696. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  697. 15:47:25.353 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  698. 15:47:25.400 [http-nio-8500-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 (? , ?)
  699. 15:47:25.400 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  700. 15:47:25.400 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  701. 15:47:25.743 [http-nio-8500-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=?
  702. 15:47:25.743 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  703. 15:47:25.790 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  704. 15:47:25.790 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  705. 15:47:25.806 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  706. 15:47:26.118 [http-nio-8500-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_
  707. 15:47:26.118 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  708. 15:47:26.118 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  709. 15:47:26.196 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  710. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  711. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  712. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  713. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  714. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  715. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  716. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  717. 15:47:26.196 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  718. 15:47:26.571 [http-nio-8500-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 (? , ? , ? , ?)
  719. 15:47:26.571 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  720. 15:47:26.571 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  721. 15:47:26.571 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  722. 15:47:26.571 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  723. 15:47:26.650 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  724. 15:47:26.665 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  725. 15:47:26.665 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  726. 15:47:26.931 [http-nio-8500-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=?
  727. 15:47:26.931 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  728. 15:47:26.993 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  729. 15:47:27.275 [http-nio-8500-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 (? , ?)
  730. 15:47:27.275 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  731. 15:47:27.275 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  732. 15:49:16.403 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  733. 15:49:16.403 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [admin]
  734. 15:49:16.403 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  735. 15:49:16.419 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  736. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  737. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-21 11:00:25.0]
  738. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  739. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  740. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  741. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  742. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  743. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  744. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  745. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  746. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  747. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  748. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  749. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  750. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [admin@crm.com]
  751. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  752. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [-1]
  753. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  754. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  755. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  756. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [香港特别行政区]
  757. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [156.234.142.107]
  758. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 15:49:16 CST 2022]
  759. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  760. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  761. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  762. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  763. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  764. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [0]
  765. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  766. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  767. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  768. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  769. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  770. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [admin]
  771. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  772. 15:49:16.419 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [1]
  773. 15:50:59.890 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  774. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  775. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  776. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  777. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  778. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  779. 15:50:59.906 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  780. 15:50:59.999 [http-nio-8500-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 (? , ?)
  781. 15:51:00.015 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  782. 15:51:00.015 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  783. 15:51:00.218 [http-nio-8500-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=?
  784. 15:51:00.234 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  785. 15:51:00.406 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  786. 15:51:00.406 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  787. 15:51:00.406 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  788. 15:51:00.609 [http-nio-8500-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_
  789. 15:51:00.609 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  790. 15:51:00.609 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  791. 15:51:00.812 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  792. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  793. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  794. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  795. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  796. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  797. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  798. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  799. 15:51:00.812 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  800. 15:51:01.031 [http-nio-8500-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 (? , ? , ? , ?)
  801. 15:51:01.031 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  802. 15:51:01.031 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  803. 15:51:01.031 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  804. 15:51:01.031 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  805. 15:51:01.218 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  806. 15:51:01.234 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  807. 15:51:01.234 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  808. 15:51:01.390 [http-nio-8500-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=?
  809. 15:51:01.390 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  810. 15:51:01.609 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  811. 15:51:01.796 [http-nio-8500-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 (? , ?)
  812. 15:51:01.796 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  813. 15:51:01.796 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  814. 15:52:00.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  815. 15:57:00.800 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  816. 15:57:58.209 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  817. 15:58:02.287 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  818. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  819. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  820. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  821. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  822. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  823. 15:58:02.287 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  824. 15:58:02.568 [http-nio-8500-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 (? , ?)
  825. 15:58:02.568 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  826. 15:58:02.568 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  827. 15:58:02.740 [http-nio-8500-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=?
  828. 15:58:02.740 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  829. 15:58:02.803 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  830. 15:58:02.818 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  831. 15:58:02.818 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  832. 15:58:02.912 [http-nio-8500-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_
  833. 15:58:02.912 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  834. 15:58:02.912 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  835. 15:58:03.256 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  836. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  837. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  838. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  839. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  840. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  841. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  842. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  843. 15:58:03.256 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  844. 15:58:03.303 [http-nio-8500-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 (? , ? , ? , ?)
  845. 15:58:03.303 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  846. 15:58:03.303 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  847. 15:58:03.303 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  848. 15:58:03.303 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  849. 15:58:03.646 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  850. 15:58:03.646 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  851. 15:58:03.646 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  852. 15:58:03.756 [http-nio-8500-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=?
  853. 15:58:03.756 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  854. 15:58:03.928 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  855. 15:58:04.115 [http-nio-8500-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 (? , ?)
  856. 15:58:04.115 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  857. 15:58:04.115 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  858. 16:01:07.242 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  859. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  860. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  861. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  862. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  863. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  864. 16:01:07.242 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  865. 16:01:07.258 [http-nio-8500-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 (? , ?)
  866. 16:01:07.274 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  867. 16:01:07.274 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  868. 16:01:07.696 [http-nio-8500-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=?
  869. 16:01:07.696 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  870. 16:01:07.696 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  871. 16:01:07.696 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  872. 16:01:07.696 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  873. 16:01:08.149 [http-nio-8500-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_
  874. 16:01:08.149 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  875. 16:01:08.149 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  876. 16:01:08.164 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  877. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  878. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  879. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  880. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  881. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  882. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  883. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  884. 16:01:08.164 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  885. 16:01:08.352 [http-nio-8500-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 (? , ? , ? , ?)
  886. 16:01:08.352 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  887. 16:01:08.352 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  888. 16:01:08.352 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  889. 16:01:08.352 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  890. 16:01:08.539 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  891. 16:01:08.539 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  892. 16:01:08.539 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  893. 16:01:08.664 [http-nio-8500-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=?
  894. 16:01:08.664 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  895. 16:01:08.867 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  896. 16:01:09.133 [http-nio-8500-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 (? , ?)
  897. 16:01:09.133 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  898. 16:01:09.133 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  899. 16:02:00.821 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  900. 16:02:56.745 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  901. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  902. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  903. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  904. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  905. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  906. 16:02:56.745 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  907. 16:02:56.776 [http-nio-8500-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 (? , ?)
  908. 16:02:56.776 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  909. 16:02:56.776 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  910. 16:02:57.229 [http-nio-8500-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=?
  911. 16:02:57.229 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  912. 16:02:57.245 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  913. 16:02:57.245 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  914. 16:02:57.245 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  915. 16:02:57.417 [http-nio-8500-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_
  916. 16:02:57.417 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  917. 16:02:57.417 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  918. 16:02:57.667 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  919. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  920. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  921. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  922. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  923. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  924. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  925. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  926. 16:02:57.667 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  927. 16:02:57.776 [http-nio-8500-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 (? , ? , ? , ?)
  928. 16:02:57.776 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  929. 16:02:57.776 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  930. 16:02:57.776 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  931. 16:02:57.776 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  932. 16:02:58.042 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  933. 16:02:58.057 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  934. 16:02:58.057 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  935. 16:02:58.182 [http-nio-8500-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=?
  936. 16:02:58.182 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  937. 16:02:58.432 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  938. 16:02:58.604 [http-nio-8500-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 (? , ?)
  939. 16:02:58.604 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  940. 16:02:58.604 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  941. 16:03:03.292 [http-nio-8500-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657440183292,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"UPDATE_CONFIG_EMAIL_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2022-07-10 16:08:03","V_CODE_V":"001922","V_DATE_TIME_V":"2022-07-10 16:03:03"},"note":null,"sendDate":null,"subject":null,"templateName":"CONFIG_UPDATE_EMAIL_CODE_SEND","users":"mic_partnership@126.com"}
  942. 16:03:24.292 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?) for update
  943. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  944. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  945. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  946. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  947. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  948. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  949. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  950. 16:03:24.292 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  951. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  952. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  953. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-06-19 10:40:46.0]
  954. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  955. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  956. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  957. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  958. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  959. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  960. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  961. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [47]
  962. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  963. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  964. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-01 07:54:13.0]
  965. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  966. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  967. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  968. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  969. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  970. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  971. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  972. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [51]
  973. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  974. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  975. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-01 07:54:13.0]
  976. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  977. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  978. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  979. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  980. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  981. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  982. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  983. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [52]
  984. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  985. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  986. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-01 07:54:13.0]
  987. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  988. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  989. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  990. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  991. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  992. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  993. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  994. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [53]
  995. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  996. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  997. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-01 07:54:13.0]
  998. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  999. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1000. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  1001. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1002. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1003. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  1004. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  1005. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [54]
  1006. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  1007. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1008. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-01 07:54:13.0]
  1009. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1010. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1011. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  1012. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1013. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1014. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  1015. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [0]
  1016. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [55]
  1017. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  1018. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1019. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-23 12:39:14.0]
  1020. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1021. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1022. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  1023. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1024. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1025. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  1026. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [0]
  1027. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [61]
  1028. 16:03:24.308 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update sys_config set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, value=? where id=?
  1029. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1030. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-07-23 12:39:14.0]
  1031. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1032. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1033. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:03:24 CST 2022]
  1034. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1035. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1036. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  1037. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [1]
  1038. 16:03:24.308 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [62]
  1039. 16:03:24.605 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  1040. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  1041. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  1042. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  1043. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  1044. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  1045. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  1046. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  1047. 16:03:24.605 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  1048. 16:07:00.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1049. 16:12:00.869 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1050. 16:17:00.890 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1051. 16:17:26.797 [http-nio-8500-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 (? , ?)
  1052. 16:17:26.797 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1053. 16:17:26.797 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1054. 16:17:27.047 [http-nio-8500-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 (? , ?)
  1055. 16:17:27.047 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1056. 16:17:27.047 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1057. 16:17:27.047 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  1058. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  1059. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  1060. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  1061. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  1062. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  1063. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  1064. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  1065. 16:17:27.047 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  1066. 16:17:27.265 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  1067. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  1068. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  1069. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1070. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1071. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1072. 16:17:27.281 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  1073. 16:17:27.468 [http-nio-8500-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 (? , ?)
  1074. 16:17:27.468 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1075. 16:17:27.468 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  1076. 16:17:27.468 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  1077. 16:17:27.484 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  1078. 16:17:27.484 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  1079. 16:17:27.484 [http-nio-8500-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_
  1080. 16:17:27.500 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  1081. 16:17:27.500 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  1082. 16:17:27.500 [http-nio-8500-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=?
  1083. 16:17:27.500 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  1084. 16:17:27.656 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  1085. 16:17:27.656 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  1086. 16:17:27.656 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  1087. 16:17:28.015 [http-nio-8500-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_
  1088. 16:17:28.015 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  1089. 16:17:28.031 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  1090. 16:17:28.109 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  1091. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  1092. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  1093. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  1094. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  1095. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  1096. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  1097. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  1098. 16:17:28.109 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  1099. 16:17:28.218 [http-nio-8500-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 (? , ? , ? , ?)
  1100. 16:17:28.218 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1101. 16:17:28.218 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1102. 16:17:28.218 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  1103. 16:17:28.218 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  1104. 16:17:28.593 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  1105. 16:17:28.593 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  1106. 16:17:28.593 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  1107. 16:17:28.906 [http-nio-8500-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=?
  1108. 16:17:28.906 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  1109. 16:17:28.906 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  1110. 16:17:29.015 [http-nio-8500-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 (? , ?)
  1111. 16:17:29.015 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  1112. 16:17:29.015 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  1113. 16:17:29.031 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  1114. 16:17:50.907 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657441070907,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"UPDATE_CONFIG_EMAIL_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2022-07-10 16:22:50","V_CODE_V":"997785","V_DATE_TIME_V":"2022-07-10 16:17:50"},"note":null,"sendDate":null,"subject":null,"templateName":"CONFIG_UPDATE_EMAIL_CODE_SEND","users":"mic_partnership@126.com"}
  1115. 16:18:17.439 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysemailte0_.id as id1_78_, sysemailte0_.add_ip as add_ip2_78_, sysemailte0_.add_time as add_time3_78_, sysemailte0_.add_user as add_user4_78_, sysemailte0_.modify_ip as modify_i5_78_, sysemailte0_.modify_time as modify_t6_78_, sysemailte0_.modify_user as modify_u7_78_, sysemailte0_.note as note8_78_, sysemailte0_.code as code9_78_, sysemailte0_.content as content10_78_, sysemailte0_.email_config_id as email_c11_78_, sysemailte0_.name as name12_78_, sysemailte0_.notification_object as notific13_78_, sysemailte0_.subject as subject14_78_, sysemailte0_.type as type15_78_ from sys_email_template sysemailte0_ where sysemailte0_.notification_object=? for update
  1116. 16:18:17.439 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [2]
  1117. 16:18:17.455 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1118. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1119. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  1120. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1121. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1122. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1123. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1124. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1125. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_PASSWORD_SEND_CN]
  1126. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1127. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b357; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1128. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1129. <div>&nbsp;</div>
  1130. </div>
  1131. <div style="width: 100%;">
  1132. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  1133. <div style="padding: 20px 0; line-height: 2;">您正在进行密码重置操作,请点击下方按钮进行密码重置:</div>
  1134. <div style="margin: auto; line-height: 36px; background-color: #e8b357; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/forget.html?token=V_TOKEN_V">密码重置</a></span></div>
  1135. <div style="padding: 25px 0;">如果您无法点击上面的按钮,请复制下方完整的URL地址,粘贴到您的浏览器的地址栏中然后按回车键,跳转至密码重置界面进行重置操作:</div>
  1136. <div style="text-align: center; color: #368fec; font-weight: bold;">https://my.mic-partners.com/forget.html?token=V_TOKEN_V</div>
  1137. <div style="text-align: center; font-weight: bold; margin-top: 15px;">有效期至: V_EXPIRE_TIME_V&nbsp;</div>
  1138. <div style="padding: 25px 0;">MIC 团队</div>
  1139. </div>
  1140. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1141. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">若有任何疑问或帮助,请发送邮件至 </span></span><span style="color: #368fec;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">与我们联系。我们的客服支持团队期待您的垂询。</span></span></div>
  1142. </div>
  1143. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1144. </div>
  1145. </div>]
  1146. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1147. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [密码重置]
  1148. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1149. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 密码重置]
  1150. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1151. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1]
  1152. 16:18:17.455 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1153. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1154. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  1155. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1156. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1157. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1158. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1159. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1160. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_PASSWORD_SEND_EN]
  1161. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1162. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b357; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1163. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1164. <div>&nbsp;</div>
  1165. </div>
  1166. <div style="width: 100%;">
  1167. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  1168. <div style="padding: 20px 0; line-height: 2;">You are performing a password reset, please click the button below to reset your password:</div>
  1169. <div style="margin: auto; line-height: 36px; background-color: #e8b357; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/forget.html?token=V_TOKEN_V">Password Reset</a></span></div>
  1170. <div style="padding: 25px 0;">If you are not able to click the button above, please copy the URL link below, paste it on your browser&rsquo;s address bar and press return, redirect to the password reset page, and perform the action:</div>
  1171. <div style="text-align: center; color: #368fec; font-weight: bold;">https://my.mic-partners.com/forget.html?token=V_TOKEN_V</div>
  1172. <div style="font-weight: bold; margin-top: 15px; text-align: center;">This link will valid until:&nbsp; V_EXPIRE_TIME_V</div>
  1173. <div style="padding: 25px 0;"><br />MIC Team</div>
  1174. </div>
  1175. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1176. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please &nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  1177. </div>
  1178. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1179. </div>
  1180. </div>]
  1181. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1182. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Password Reset Notification]
  1183. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1184. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Password Reset Notification]
  1185. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1186. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [2]
  1187. 16:18:17.455 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1188. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1189. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-02 12:25:49.0]
  1190. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1191. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1192. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1193. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1194. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1195. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_REGISTER_SEND_EMAIL_CODE_CN]
  1196. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1197. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1198. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="data:image/jpeg;base64,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" alt="" />
  1199. <div>&nbsp;</div>
  1200. </div>
  1201. <div style="width: 100%;">
  1202. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  1203. <div style="font-weight: bold; padding: 25px 0; text-align: center;">您邮箱验证码为: <span style="font-weight: bold; font-style: normal; font-size: 28px; color: #e8b357; white-space: nowrap;">V_CODE_V</span></div>
  1204. <div style="padding: 20px 0; line-height: 2; text-align: left;">*请注意,验证码有效时间至&nbsp; <span style="font-weight: bold; color: #e8b357;">V_EXPIRE_TIME_V </span>,请在有效时间内完成验证操作。</div>
  1205. <div style="padding: 25px 0;">MIC 团队</div>
  1206. </div>
  1207. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1208. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #3598db;"><a style="color: #3598db;" title="mic_partnership@126.com " href="mailto:mic_partnership@126.com">mic_partnership@126.com </a></span>与我们联系。我们的客服支持团队期待您的垂询。</div>
  1209. </div>
  1210. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1211. </div>
  1212. </div>]
  1213. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1214. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [邮箱验证]
  1215. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1216. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 邮箱验证]
  1217. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1218. 16:18:17.455 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [3]
  1219. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1220. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1221. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-02 12:26:34.0]
  1222. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1223. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1224. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1225. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1226. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1227. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_REGISTER_SEND_EMAIL_CODE_EN]
  1228. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1229. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1230. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="data:image/jpeg;base64,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" alt="" />
  1231. <div>&nbsp;</div>
  1232. </div>
  1233. <div style="width: 100%;">
  1234. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  1235. <div style="padding: 25px 0px; text-align: left; line-height: 2;">To verify this email address belongs to you, please enter the following code on the email verification page: <br /><span style="font-weight: bold; font-style: normal; font-size: 28px; color: #e8b357; white-space: nowrap;">V_CODE_V</span></div>
  1236. <div style="padding: 25px 0px; text-align: left; line-height: 2;"><span style="font-size: 14px;"><strong>MIC&nbsp;</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1237. </div>
  1238. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1239. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please &nbsp;send email to <a href="mailto:mic_partnership@126.com "><span style="color: #3598db;">mic_partnership@126.com</span> </a>. Our customer support team looks forward to serving you better.</div>
  1240. </div>
  1241. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="color: #aeaeae;"><span style="font-size: 12px;"><strong>General risk warning: </strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</span></span></div>
  1242. </div>
  1243. </div>]
  1244. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1245. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Verify your Email address]
  1246. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1247. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Verify your Email address]
  1248. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1249. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [4]
  1250. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1251. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1252. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-20 13:24:15.0]
  1253. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1254. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1255. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1256. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1257. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1258. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_EMAIL_CODE_SEND_CN]
  1259. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1260. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1261. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1262. <div>&nbsp;</div>
  1263. </div>
  1264. <div style="width: 100%;">
  1265. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  1266. <div style="font-weight: bold; padding: 25px 0; text-align: center;">您电子信箱验证码为: <span style="font-weight: bold; font-style: normal; font-size: 28px; color: #e8b357; white-space: nowrap;">V_CODE_V</span></div>
  1267. <div style="padding: 20px 0; line-height: 2; text-align: left;">*请注意,验证码有效时间至 <span style="font-weight: bold; color: #e8b357;">V_EXPIRE_TIME_V </span>, 请在有效时间内完成验证操作。</div>
  1268. <div style="padding: 25px 0;">MIC 团队</div>
  1269. </div>
  1270. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1271. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  1272. </div>
  1273. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1274. </div>
  1275. </div>]
  1276. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1277. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [邮件验证]
  1278. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1279. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 邮件验证]
  1280. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1281. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [5]
  1282. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1283. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1284. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-20 13:24:15.0]
  1285. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1286. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1287. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1288. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1289. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1290. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_EMAIL_CODE_SEND_EN]
  1291. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1292. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b357; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1293. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1294. <div>&nbsp;</div>
  1295. </div>
  1296. <div style="width: 100%;">
  1297. <div style="font-weight: bold; padding: 25px 0;">
  1298. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  1299. <div style="padding: 25px 0px; text-align: left; line-height: 2;">To verify this email address belongs to you, please enter the following code on the email verification page:&nbsp;<br /><span style="font-weight: bold; font-style: normal; font-size: 28px; color: #e8b357; white-space: nowrap;">V_CODE_V</span></div>
  1300. <div style="padding: 20px 0px; line-height: 2; text-align: left;"><strong>*This code will expire two hours after this email was sent.</strong></div>
  1301. <div style="padding: 20px 0px; line-height: 2; text-align: left;"><span style="font-size: 14px;"><strong>MIC Team</strong></span></div>
  1302. </div>
  1303. </div>
  1304. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1305. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please&nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com</u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  1306. </div>
  1307. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1308. </div>
  1309. </div>]
  1310. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1311. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Verify your Email address]
  1312. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1313. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC- Verify your Email address]
  1314. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1315. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [6]
  1316. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1317. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1318. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1319. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1320. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1321. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1322. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1323. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1324. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_APPLY_DEAL_RESET_PASSWORD_SEND_CN]
  1325. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1326. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1327. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1328. <div>&nbsp;</div>
  1329. </div>
  1330. <div style="width: 100%;">
  1331. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  1332. <div style="padding: 20px 0; line-height: 2;">您正在进行交易密码重置操作,请点击下方按钮进行密码重置:</div>
  1333. <div style="margin: auto; line-height: 36px; background-color: #e8b45a; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/resetTrading.html?token=V_TOKEN_V&amp;login=V_LOGIN_V" target="_blank" rel="noopener">密码重置</a></span></div>
  1334. <div style="padding: 25px 0;">如果您无法点击上面的按钮,请复制下方完整的URL地址,粘贴到您的浏览器的地址栏中然后按回车键,跳转至密码重置界面进行重置操作:</div>
  1335. <div style="text-align: center; color: #368fec; font-weight: bold;">&nbsp;https://my.mic-partners.com/resetTrading.html?token=V_TOKEN_V&amp;login=V_LOGIN_V</div>
  1336. <div style="padding: 25px 0;">MIC 团队</div>
  1337. </div>
  1338. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1339. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至<a title="mic_partnership@126.com " href="mailto:mic_partnership@126.com"><span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com</span></a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  1340. </div>
  1341. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1342. </div>
  1343. </div>]
  1344. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1345. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [密码重置]
  1346. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1347. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 密码重置]
  1348. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1349. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [13]
  1350. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1351. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1352. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1353. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1354. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1355. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1356. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1357. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1358. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_APPLY_DEAL_RESET_PASSWORD_SEND_EN]
  1359. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1360. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1361. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1362. <div>&nbsp;</div>
  1363. </div>
  1364. <div style="width: 100%;">
  1365. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  1366. <div style="padding: 20px 0; line-height: 2;">You are resetting the transaction password. Please click the button below to reset the password:</div>
  1367. <div style="margin: auto; line-height: 36px; background-color: #e8b45a; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/resetTrading.html?token=V_TOKEN_V&amp;login=V_LOGIN_V">Password Reset</a></span></div>
  1368. <div style="padding: 25px 0;">If you are not able to click the button above, please copy the URL link below, paste it on your browser&rsquo;s address bar and press return, redirect to password reset page and perform the action:</div>
  1369. <div style="color: #368fec; font-weight: bold; text-align: center;">&nbsp;https://my.mic-partners.com/resetTrading.html?token=V_TOKEN_V&amp;login=V_LOGIN_V</div>
  1370. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1371. </div>
  1372. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1373. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1374. </div>
  1375. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1376. <div style="display: flex; justify-content: space-between; align-content: center;">
  1377. <div style="font-weight: bold; font-size: 12px;">&nbsp;</div>
  1378. <div>&nbsp;</div>
  1379. </div>
  1380. </div>
  1381. </div>]
  1382. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1383. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Password Reset Notification]
  1384. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1385. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Password Reset Notification]
  1386. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1387. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [14]
  1388. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1389. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1390. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1391. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1392. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1393. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1394. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1395. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1396. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_REGISTER_COMPLETE_SEND_CN]
  1397. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1398. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1399. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1400. <div>&nbsp;</div>
  1401. </div>
  1402. <div style="width: 100%;">
  1403. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  1404. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">感谢您注册 MIC !</span></div>
  1405. <div style="padding: 20px 0; line-height: 2;">您现在即可登录用户专区,并在其中管理您的交易账户、进行存款和提款、更新您的个人详细信息等。</div>
  1406. <div style="padding: 10px 0;">您的CID账户为:<span style="font-weight: bold; color: #eb3f57; font-size: 16px;">&nbsp;<span style="color: #e8b357;">V_C_ID_V </span></span>&nbsp;,您可以使用密码以及电子邮件地址,登录到 <a style="text-decoration: underline; color: #368fec; font-weight: bold;" href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener">&nbsp;个人中心</a>中</div>
  1407. <div style="padding: 10px 0; border-bottom: 1px solid #E1E1E1;">*请不要与其他人共享您的ID账户,并安全地存储此信息。</div>
  1408. <div style="font-weight: bold;">&nbsp;</div>
  1409. <div style="font-weight: bold;">1. 完成完善资料过程</div>
  1410. <ul>
  1411. <li style="font-weight: bold; padding-bottom: 25px;">身份证明
  1412. <ul>
  1413. <li style="font-weight: 500; line-height: 1.5;">护照</li>
  1414. <li style="font-weight: 500; line-height: 1.5;">身份证件(正面和背面)</li>
  1415. </ul>
  1416. </li>
  1417. </ul>
  1418. <div style="line-height: 1.6; padding-bottom: 20px;">*支持的文件格式有 PNG, JPEG, JPG 和 PDF,请注意,上传的图像或文件必须是高质量,并且无障碍的显示完整的文档页面。</div>
  1419. <div style="font-weight: bold;">2. 为您的帐户注资</div>
  1420. <div style="line-height: 1.7; text-indent: 24px;">&nbsp;</div>
  1421. <div style="padding: 25px 0;">MIC 团队</div>
  1422. </div>
  1423. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1424. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  1425. </div>
  1426. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1427. </div>
  1428. </div>]
  1429. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1430. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [客户专区注册通知]
  1431. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1432. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 客户专区注册通知]
  1433. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1434. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [15]
  1435. 16:18:17.470 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1436. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1437. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1438. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1439. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1440. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1441. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1442. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1443. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_REGISTER_COMPLETE_SEND_EN]
  1444. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1445. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1446. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1447. <div>&nbsp;</div>
  1448. </div>
  1449. <div style="width: 100%;">
  1450. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  1451. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Thank you for signing up with MIC!</span></div>
  1452. <div style="font-size: 14px; padding: 20px 0px; line-height: 1.8;">You may now access your account's <strong>client zone</strong> to set your own preference and manage your trading account(s) including make deposit and withdrawal transactions, renew your personal information, view our exclusive trading analysis and etc.</div>
  1453. <div style="padding: 10px 0px; line-height: 2;"><span style="font-size: 14px;">Your CID account will be:</span><span style="font-weight: bold; color: #eb3f57; font-size: 16px;">&nbsp;<span style="color: #e8b357;">V_C_ID_V </span></span><span style="font-size: 14px;">&nbsp;, you may use your <strong>email address</strong> and your <strong>password</strong> to log on to your account's <a href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener"><span style="text-decoration: underline;"><strong><span style="color: #3598db; text-decoration: underline;">client zone</span></strong></span></a>.</span></div>
  1454. <div style="font-size: 14px; padding: 10px 0px; border-bottom: 1px solid #e1e1e1; line-height: 1.8;">*Please do not share your ID account with others and save this email for safety purposes.</div>
  1455. <div style="font-weight: bold;">&nbsp;</div>
  1456. <div style="font-weight: bold;">1. 1.Complete your personal information</div>
  1457. <ul style="font-size: 14px;">
  1458. <li style="font-weight: bold; padding-bottom: 25px;">Personal Identification
  1459. <ul>
  1460. <li style="font-weight: 500; line-height: 1.5;">Passport</li>
  1461. <li style="font-weight: 500; line-height: 1.5;">Identity card (front &amp; back)</li>
  1462. </ul>
  1463. </li>
  1464. </ul>
  1465. <div style="line-height: 1.6; padding-bottom: 20px;">*Supported file format includes JPEG, JPG, PNG, and PDF. Please note that the file or image must be in high resolution, and the full page must be visible.</div>
  1466. <div style="font-weight: bold;">2. Fund your Account</div>
  1467. <div style="line-height: 1.7;">&nbsp;</div>
  1468. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;">&nbsp;Team</strong></div>
  1469. </div>
  1470. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1471. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please &nbsp;send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1472. </div>
  1473. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;">General risk warning: CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1474. </div>
  1475. </div>]
  1476. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1477. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Account signup Confirmation]
  1478. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1479. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Account signup Confirmation]
  1480. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1481. 16:18:17.470 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [16]
  1482. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1483. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1484. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1485. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1486. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1487. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1488. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1489. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1490. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_DEAL_CHANG_PASSWORD_COMPLETE_SEND_CN]
  1491. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1492. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid rgba(235, 63, 87, 1); background-color: #ffffff; padding: 25px; font-size: 14px;">
  1493. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /><br />
  1494. <div>&nbsp;</div>
  1495. </div>
  1496. <div style="width: 100%;">
  1497. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  1498. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  1499. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;">交易密码已修改成功</div>
  1500. <div style="padding: 20px 0 40px; line-height: 2;">您的交易账户 : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,交易密码已修改成功,您可以使用设置的新密码登录至交易账户</div>
  1501. <div style="padding: 25px 0;">MIC 团队</div>
  1502. </div>
  1503. <div style="margin-bottom: 25px; width: 100%; height: 60px; border-radius: 2px; background-color: rgba(235, 63, 87, 1); color: #ffffff; display: flex; justify-content: space-between; padding: 20px; box-sizing: border-box;">
  1504. <div style="font-weight: bold; display: flex;"><a style="color: #ffffff; text-decoration: none;" href="https://my.mic-partners.com/#/signin">前往客户专区</a></div>
  1505. <img src="https://admin.mic-partners.com/icon/6.png" alt="" /></div>
  1506. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1507. <div style="width: 100px; margin-right: 30px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/kf.png" alt="" /></div>
  1508. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  1509. </div>
  1510. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1511. <div style="display: flex; justify-content: space-between; align-content: center;">
  1512. <div style="font-weight: bold; font-size: 12px;"><a href="https://www.mic-partners.com">www.mic-partners.com</a></div>
  1513. <div>&nbsp;</div>
  1514. </div>
  1515. </div>
  1516. <div style="text-align: center; padding: 10px; line-height: 1.5; background-color: #f5f5f5; font-size: 12px; color: #a1a1a1;">( 该邮件由 系统服务自动发送,请勿直接回复 )</div>
  1517. </div>]
  1518. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1519. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [交易密码调整通知]
  1520. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1521. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 交易密码调整通知]
  1522. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1523. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [18]
  1524. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1525. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1526. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1527. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1528. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1529. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1530. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1531. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1532. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_DEAL_CHANG_PASSWORD_COMPLETE_SEND_EN]
  1533. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1534. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid rgba(235, 63, 87, 1); background-color: #ffffff; padding: 25px; font-size: 14px;">
  1535. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1536. <div>&nbsp;</div>
  1537. </div>
  1538. <div style="width: 100%;">
  1539. <div style="font-weight: bold; padding: 25px 0;">DearV_NAME_V :</div>
  1540. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  1541. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;">Trading Password has been changed successfully</div>
  1542. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;">Your trading account: </span><span style="font-weight: bold;">V_LOGIN_V </span><span style="font-size: 14px;">&nbsp;, Trading password has been successfully changed. You may use the <strong>new password</strong> to log on to your trading account.&nbsp;</span></div>
  1543. <div style="padding: 25px 0px; line-height: 1.8;"><span style="font-size: 14px;">Sincerely,</span><br /><span style="font-size: 14px;"><strong>Brunsdonfx</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1544. </div>
  1545. <div style="margin-bottom: 25px; width: 100%; height: 60px; border-radius: 2px; background-color: rgba(235, 63, 87, 1); color: #ffffff; display: flex; justify-content: space-between; padding: 20px; box-sizing: border-box;">
  1546. <div style="font-weight: bold; display: flex;"><a style="color: #ffffff; text-decoration: none;" href="https://my.mic-partners.com/#/signin">Go to customer exclusive zone</a></div>
  1547. <img src="https://admin.mic-partners.com/icon/6.png" alt="" /></div>
  1548. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1549. <div style="width: 100px; margin-right: 30px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/kf.png" alt="" /></div>
  1550. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please &nbsp;send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1551. </div>
  1552. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1553. <div style="display: flex; justify-content: space-between; align-content: center;">
  1554. <div style="font-weight: bold; font-size: 12px;"><a href="https://www.mic-partners.com">www.mic-partners.com</a></div>
  1555. <div>&nbsp;</div>
  1556. </div>
  1557. </div>
  1558. <div style="text-align: center; padding: 10px; line-height: 1.5; background-color: #f5f5f5; font-size: 12px; color: #a1a1a1;">(this email is automatically sent by BRC system service, please do not reply directly)</div>
  1559. </div>]
  1560. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1561. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Change Trading Password Notification]
  1562. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1563. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Change Trading Password Notification]
  1564. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1565. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [19]
  1566. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1567. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1568. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1569. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1570. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1571. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1572. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1573. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1574. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_LEVERAGE_UPDATE_COMPLETE_SEND_CN]
  1575. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1576. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1577. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1578. <div>&nbsp;</div>
  1579. </div>
  1580. <div style="width: 100%;">
  1581. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  1582. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">感谢您选择 MIC!</span></div>
  1583. <div style="padding: 20px 0; line-height: 2;">您的杠杆调整已完成,可即时登录您的交易账户查看:</div>
  1584. <div style="padding: 20px 35px; font-size: 12px;">
  1585. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易账户:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LOGIN_V </span></div>
  1586. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">原杠杆:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 5px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LEVERAGE_OLD_V </span></div>
  1587. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">新杠杆:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LEVERAGE_V </span></div>
  1588. </div>
  1589. <div style="padding: 25px 0;">MIC 团队</div>
  1590. </div>
  1591. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1592. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">若有任何疑问或帮助,请发送邮件至<a href="mailto:mic_partnership@126.com"> </a></span></span><a href="mailto:mic_partnership@126.com"><span style="color: #368fec;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span></a><span style="color: #797979;"><span style="font-size: 12px;">与我们联系。我们的客服支持团队期待您的垂询。</span></span></div>
  1593. </div>
  1594. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1595. </div>
  1596. </div>]
  1597. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1598. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [杠杆调整完成通知]
  1599. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1600. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 杠杆调整完成通知]
  1601. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1602. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [20]
  1603. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1604. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1605. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1606. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1607. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1608. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1609. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1610. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1611. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_LEVERAGE_UPDATE_COMPLETE_SEND_EN]
  1612. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1613. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1614. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1615. <div>&nbsp;</div>
  1616. </div>
  1617. <div style="width: 100%;">
  1618. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  1619. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Leverage has been changed successfully!</span></div>
  1620. <div style="padding: 20px 0; line-height: 2;">Kindly find your trading account details as below:</div>
  1621. <div style="padding: 20px 35px; font-size: 12px;">
  1622. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Trading Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LOGIN_V </span></div>
  1623. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Previous Leverage:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LEVERAGE_OLD_V </span></div>
  1624. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">New Leverage:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_LEVERAGE_V</span></div>
  1625. </div>
  1626. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1627. </div>
  1628. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1629. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1630. </div>
  1631. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1632. </div>
  1633. </div>]
  1634. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1635. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Change of Leverage Notification]
  1636. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1637. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Change of Leverage Notification]
  1638. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1639. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [21]
  1640. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1641. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1642. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1643. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1644. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1645. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1646. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1647. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1648. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_VERIFICATION_SUCCESS_SEND_CN]
  1649. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1650. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1651. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" />
  1652. <div>&nbsp;</div>
  1653. </div>
  1654. <div style="width: 100%;">
  1655. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  1656. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  1657. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">您的资料已通过核验 !</span></div>
  1658. <div style="padding: 20px 0 40px; line-height: 2;">您的资料已经核验通过,可即时前往您的 <a style="font-weight: bold; text-decoration: underline; color: #368fec;" href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener">&nbsp;个人中心</a> 直接新开交易账户,预祝您交易愉快!</div>
  1659. <div style="padding: 20px 0 40px; line-height: 2;">MIC 团队</div>
  1660. </div>
  1661. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1662. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <a href="https://www.mic-partners.com">www.mic-partners.com</a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  1663. </div>
  1664. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1665. </div>
  1666. </div>]
  1667. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1668. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [资料核验完成通知]
  1669. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1670. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 资料核验完成通知]
  1671. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1672. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [22]
  1673. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1674. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1675. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1676. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1677. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1678. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1679. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1680. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1681. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_VERIFICATION_SUCCESS_SEND_EN]
  1682. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1683. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1684. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" />
  1685. <div>&nbsp;</div>
  1686. </div>
  1687. <div style="width: 100%;">
  1688. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  1689. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  1690. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Congratulations on the approval of your document verification!</span></div>
  1691. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;">It is a great pleasure to have you as a client of MIC! Please log on to the Client Zone to manage your trading account(s).</span></div>
  1692. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;">Thank you for choosing MIC as your preferred broker and we wish you a successful and profitable trading!</span></div>
  1693. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;"><strong>MIC&nbsp;</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1694. </div>
  1695. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1696. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1697. </div>
  1698. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1699. </div>
  1700. </div>]
  1701. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1702. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Verification Notification]
  1703. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1704. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Verification Notification]
  1705. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1706. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [23]
  1707. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1708. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1709. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1710. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1711. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1712. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1713. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1714. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1715. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_VERIFICATION_FAIL_SEND_CN]
  1716. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1717. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1718. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  1719. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /></div>
  1720. </div>
  1721. <div style="width: 100%;">
  1722. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  1723. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/sb.png" alt="" /></div>
  1724. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">资料核验未通过!</span></div>
  1725. <div style="padding: 20px 0 40px; line-height: 2; border-bottom: 1px solid #E1E1E1;">很抱歉的通知您,您提交的资料信息核验失败了,我们发现:<span style="color: #e8b357;"><span style="font-weight: bold;">V_REASONS_REFUSAL_V </span>&nbsp;</span>,请登陆您的 <a style="font-weight: bold; text-decoration: underline; color: #368fec;" href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener">个人中心</a> 更新信息,谢谢 !</div>
  1726. <div style="font-weight: bold;">&nbsp;</div>
  1727. <div style="font-weight: bold;">1. 完成完善资料过程</div>
  1728. <ul>
  1729. <li style="font-weight: bold; padding-bottom: 25px;">身份证明
  1730. <ul>
  1731. <li style="font-weight: 500; line-height: 1.5;">护照</li>
  1732. <li style="font-weight: 500; line-height: 1.5;">身份证件(正面和背面)</li>
  1733. </ul>
  1734. </li>
  1735. </ul>
  1736. <div style="line-height: 1.6; padding-bottom: 20px;">*支持的文件格式有 PNG, JPEG, JPG 和 PDF,请注意,上传的图像或文件必须是高质量,并且无障碍的显示完整的文档页面。</div>
  1737. <div style="font-weight: bold;">2. 为您的帐户注资</div>
  1738. <div style="line-height: 1.7; text-indent: 24px;">&nbsp;</div>
  1739. <div style="padding: 25px 0;">MIC 团队</div>
  1740. </div>
  1741. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1742. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com&nbsp;</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  1743. </div>
  1744. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1745. <div style="display: flex; justify-content: space-between; align-content: center;">
  1746. <div style="font-weight: bold; font-size: 12px;">&nbsp;</div>
  1747. <div>&nbsp;</div>
  1748. </div>
  1749. </div>
  1750. </div>]
  1751. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1752. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [资料核验失败通知]
  1753. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1754. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 资料核验失败通知]
  1755. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1756. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [24]
  1757. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1758. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1759. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1760. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1761. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1762. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1763. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1764. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1765. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_VERIFICATION_FAIL_SEND_EN]
  1766. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1767. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1768. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  1769. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /></div>
  1770. </div>
  1771. <div style="width: 100%;">
  1772. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  1773. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/sb.png" alt="" /></div>
  1774. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Verification failed!</span></div>
  1775. <div style="padding: 20px 0 40px; line-height: 2; border-bottom: 1px solid #E1E1E1;"><span style="font-size: 14px;">We couldn't verify the documents you submitted. Please log on to your <a href="https://my.mic-partners.com/#/signin"><strong>Client Zone</strong></a> to update the lacking documents.</span><br /><br /><span style="color: #e8b357; font-weight: bold;">V_REASONS_REFUSAL_V</span></div>
  1776. <div style="font-weight: bold;">&nbsp;</div>
  1777. <div style="font-weight: bold;">1. Complete your personal information</div>
  1778. <ul style="font-size: 14px;">
  1779. <li style="font-weight: bold; padding-bottom: 25px;">Personal Identification
  1780. <ul>
  1781. <li style="font-weight: 500; line-height: 1.5;">Passport</li>
  1782. <li style="font-weight: 500; line-height: 1.5;">Identity card (front &amp; back)</li>
  1783. </ul>
  1784. </li>
  1785. </ul>
  1786. <div style="line-height: 1.6; padding-bottom: 20px;">*Supported file format includes JPEG, JPG, PNG, and PDF. Please note that the file or image must be in high resolution, and the full page must be visible.</div>
  1787. <div style="font-weight: bold; line-height: 1.8;">2. Fund your Account</div>
  1788. <div style="padding: 25px 0px; line-height: 2;"><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1789. </div>
  1790. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1791. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please </span></span><span style="color: #797979;"><span style="font-size: 12px;">&nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  1792. </div>
  1793. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1794. <div style="display: flex; justify-content: space-between; align-content: center;">
  1795. <div style="font-weight: bold; font-size: 12px;">&nbsp;</div>
  1796. <div>&nbsp;</div>
  1797. </div>
  1798. </div>
  1799. </div>]
  1800. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1801. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Verification Failure]
  1802. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1803. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Verification Failure]
  1804. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1805. 16:18:17.486 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [25]
  1806. 16:18:17.486 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1807. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1808. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1809. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1810. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1811. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1812. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1813. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1814. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_CREATE_COMPLETE_SEND_CN]
  1815. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1816. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1817. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1818. <div>&nbsp;</div>
  1819. </div>
  1820. <div style="width: 100%;">
  1821. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  1822. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">您的交易账户已经开设!</span></div>
  1823. <div style="line-height: 2;">您已成功开设一个交易账户。您现在可以下载MIC交易工具,进行金融市场交易。</div>
  1824. <div style="padding: 20px 35px; font-size: 12px;">
  1825. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易平台:<br /></span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_PLATFORM_V </span></div>
  1826. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">账户类型:<br /></span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_TYPE_V </span></div>
  1827. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易账户:<br /></span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_V </span></div>
  1828. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">投资人密码:<br /></span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_INVESTOR_PASSWORD_V </span></div>
  1829. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易服务器地址:<br /></span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">MactorInternational-live2<br /></span></div>
  1830. <div style="padding: 10px 0;">*登录您的 MetaTrader 终端时,请输入此服务器地址,或者从下拉列表中选择该地址。</div>
  1831. </div>
  1832. <div style="font-weight: bold;">还没有交易客户端?-&gt; <a href="https://download.mql5.com/cdn/web/17364/mt4/mactorinternational4setup.exe" target="_blank" rel="noopener">MT4下载</a></div>
  1833. <div style="font-weight: bold;">&nbsp;</div>
  1834. <div style="font-weight: bold;"><strong style="font-size: 14px;">MIC 团队</strong></div>
  1835. <div style="font-weight: bold;">&nbsp;</div>
  1836. </div>
  1837. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1838. <div style="color: #797979; font-size: 12px; line-height: 2;">&nbsp;</div>
  1839. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com</span>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  1840. </div>
  1841. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。<u></u></div>
  1842. </div>
  1843. </div>]
  1844. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1845. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [交易账户开立通知]
  1846. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1847. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 交易账户开立通知]
  1848. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1849. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [31]
  1850. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1851. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1852. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-14 15:15:21.0]
  1853. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1854. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1855. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1856. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1857. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1858. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_CREATE_COMPLETE_SEND_EN]
  1859. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1860. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1861. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1862. <div>&nbsp;</div>
  1863. </div>
  1864. <div style="width: 100%;">
  1865. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  1866. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Congratulations!</span></div>
  1867. <div style="line-height: 2;"><span style="font-size: 14px;">You have successfully opened a real trading account with <strong>MIC</strong>! Start your trade now to enjoy our excellent trading environment! Please find your account details as below:</span></div>
  1868. <div style="padding: 20px 35px; font-size: 12px;">
  1869. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Trading Platform:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_PLATFORM_V </span></div>
  1870. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Account Type:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_TYPE_V </span></div>
  1871. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Trading Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_V </span></div>
  1872. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Investor Password:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_INVESTOR_PASSWORD_V </span></div>
  1873. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Transaction Server Address:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">MactorInternational-live2<br /></span></div>
  1874. <div style="padding: 10px 0;">* Login to MetaTrader by enter the trading server address or select the server address on the login page.</div>
  1875. </div>
  1876. <div style="font-weight: bold;">No trading client yet?-&gt; <a href="https://download.mql5.com/cdn/web/17364/mt4/mactorinternational4setup.exe" target="_blank" rel="noopener">Download MT4</a></div>
  1877. <div style="font-weight: bold;">&nbsp;</div>
  1878. <div style="font-weight: bold;"><strong style="font-size: 14px;">MIC Team&nbsp;</strong></div>
  1879. <div style="font-weight: bold;">&nbsp;</div>
  1880. </div>
  1881. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1882. <div style="color: #797979; font-size: 12px; line-height: 2;">&nbsp;</div>
  1883. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1884. </div>
  1885. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1886. </div>
  1887. </div>]
  1888. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1889. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Real Account Opening Notification]
  1890. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1891. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Real Account Opening Notification]
  1892. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1893. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [32]
  1894. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1895. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [8.210.194.53]
  1896. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-09-09 16:35:57.0]
  1897. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1898. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1899. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1900. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1901. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1902. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AGENT_REGISTER_COMPLETE_SEND_CN]
  1903. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1904. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1905. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /><br />
  1906. <div>&nbsp;</div>
  1907. </div>
  1908. <div style="width: 100%;">
  1909. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  1910. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">感谢您选择 MIC!</span></div>
  1911. <div style="padding: 20px 0; line-height: 2;">您已经成为我们 MIC 的合作伙伴,您的介绍经纪人信息如下:</div>
  1912. <div style="padding: 20px 35px; font-size: 12px;">
  1913. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">代理账户:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold;">&nbsp;V_AGENT_ID_V </span></div>
  1914. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">专属链接:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">https://my.mic-partners.com/#/signup/V_AGENT_ID_V/F2/B1<br /></span></div>
  1915. </div>
  1916. <div style="padding: 25px 0;">MIC 团队</div>
  1917. </div>
  1918. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1919. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">若有任何疑问或帮助,请发送邮件至 </span></span><a href="mailto:mic_partnership@126.com%20"><span style="color: #368fec;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span></a><span style="color: #797979;"><span style="font-size: 12px;">与我们联系。我们的客服支持团队期待您的垂询。</span></span></div>
  1920. </div>
  1921. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1922. </div>
  1923. </div>]
  1924. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1925. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [介绍经纪人开户完成通知]
  1926. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1927. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 介绍经纪人开户完成通知]
  1928. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1929. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [51]
  1930. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1931. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [8.210.194.53]
  1932. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-09-09 16:35:57.0]
  1933. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1934. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1935. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1936. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1937. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1938. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AGENT_REGISTER_COMPLETE_SEND_EN]
  1939. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1940. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1941. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  1942. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" />&nbsp;</div>
  1943. </div>
  1944. <div style="width: 100%;">
  1945. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  1946. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Thank you for choosing MIC !</span></div>
  1947. <div style="padding: 20px 0; line-height: 2;">We are glad to inform you that you have successfully registered your IB Account, kindly find your account details as below for your reference:</div>
  1948. <div style="padding: 20px 35px; font-size: 12px;">
  1949. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">IB Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">&nbsp;V_IB_NO_V </span></div>
  1950. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Referral Link:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; border-left: none; font-weight: bold; min-width: 250px; box-sizing: border-box;">https://my.mic-partners.com/#/signup/V_AGENT_ID_V/F0/B0</span></div>
  1951. </div>
  1952. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  1953. </div>
  1954. <a title="https://my.mic-partners.com/#/signin" href="https://my.mic-partners.com/#/signin"><img src="https://admin.mic-partners.com/icon/6.png" alt="" /></a></div>
  1955. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1956. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  1957. </div>
  1958. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  1959. </div>]
  1960. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1961. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [IB Application]
  1962. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1963. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - IB Application]
  1964. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  1965. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [52]
  1966. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  1967. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  1968. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-09-17 22:11:14.0]
  1969. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1970. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  1971. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  1972. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1973. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1974. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_DEMO_CREATE_COMPLETE_SEND_CN]
  1975. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  1976. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #; background-color: #ffffff; padding: 25px; font-size: 14px;">
  1977. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  1978. <div>&nbsp;</div>
  1979. </div>
  1980. <div style="width: 100%;">
  1981. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  1982. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">您的模拟账户已经准备就绪!</span></div>
  1983. <div style="line-height: 2;">您已成功开设一个模拟账户。您现在可以下载MIC交易工具,进行金融市场交易。</div>
  1984. <div style="padding: 20px 35px; font-size: 12px;">
  1985. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易平台:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_PLATFORM_V </span></div>
  1986. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">账户类型:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_TYPE_V </span></div>
  1987. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易账户:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_V </span></div>
  1988. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">投资人密码:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_INVESTOR_PASSWORD_V </span></div>
  1989. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">交易服务器地址:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">MactorInternational-Demo<br /></span></div>
  1990. <div style="padding: 10px 0;">*登录您的 MetaTrader 终端时,请输入此服务器地址,或者从下拉列表中选择该地址。</div>
  1991. </div>
  1992. <div style="font-weight: bold;">还没有交易客户端?-&gt; <a href="https://download.mql5.com/cdn/web/17364/mt4/mactorinternational4setup.exe" target="_blank" rel="noopener"><span style="text-decoration: underline; color: #368fec; font-weight: bold;">前去下载</span></a></div>
  1993. <div style="padding: 25px 0;">MIC 团队</div>
  1994. </div>
  1995. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  1996. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">若有任何疑问或帮助,请发送邮件至 </span></span><span style="color: #368fec;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">与我们联系。我们的客服支持团队期待您的垂询。</span></span></div>
  1997. </div>
  1998. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  1999. </div>
  2000. </div>]
  2001. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2002. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [模拟账号已开立]
  2003. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2004. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 模拟账号已开立]
  2005. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2006. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [56]
  2007. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2008. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  2009. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-09-17 22:11:16.0]
  2010. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2011. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2012. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2013. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2014. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2015. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACCOUNT_DEMO_CREATE_COMPLETE_SEND_EN]
  2016. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2017. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2018. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2019. <div>&nbsp;</div>
  2020. </div>
  2021. <div style="width: 100%;">
  2022. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  2023. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Congratulations!</span></div>
  2024. <div style="line-height: 2;">You have successfully opened a demo trading account with&nbsp;MIC&nbsp;! Start your trade now to enjoy our excellent trading environment! Please find your account details as below:</div>
  2025. <div style="padding: 20px 35px; font-size: 12px;">
  2026. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Trading Platform:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_PLATFORM_V </span></div>
  2027. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Account Type:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_TYPE_V </span></div>
  2028. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Trading Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_LOGIN_V </span></div>
  2029. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Investor Password:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_INVESTOR_PASSWORD_V </span></div>
  2030. <div style="display: flex; line-height: 38px; margin-top: 15px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Transaction Server Address:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">MactorInternational-Demo<br /></span></div>
  2031. <div style="padding: 10px 0;">* Login to MetaTrader by enter the trading server address or select the server address on the login page.</div>
  2032. </div>
  2033. <div style="font-weight: bold;">No trading client yet?-&gt; <a href="https://download.mql5.com/cdn/web/17364/mt4/mactorinternational4setup.exe" target="_blank" rel="noopener">Download MT4</a></div>
  2034. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC&nbsp;</strong></span><strong style="font-size: 14px;">Team</strong></div>
  2035. </div>
  2036. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2037. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, </span></span><span style="color: #797979;"><span style="font-size: 12px;">&nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2038. </div>
  2039. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2040. </div>
  2041. </div>]
  2042. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2043. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Demo Account Opening Notification]
  2044. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2045. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Demo Account Opening Notification]
  2046. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2047. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [57]
  2048. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2049. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2050. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2051. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2052. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2053. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2054. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2055. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2056. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [USER_UPDATE_PASSWORD_SEND_CN]
  2057. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2058. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2059. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2060. <div>&nbsp;</div>
  2061. </div>
  2062. <div style="width: 100%;">
  2063. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V:</div>
  2064. <div style="padding: 20px 0; line-height: 2;">您正在进行密码重置操作,请点击下方按钮进行密码重置:</div>
  2065. <div style="margin: auto; line-height: 36px; background-color: #e8b45a; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/forget.html?token=V_TOKEN_V">密码重置</a></span></div>
  2066. <div style="padding: 25px 0;">如果您无法点击上面的按钮,请复制下方完整的URL地址,粘贴到您的浏览器的地址栏中然后按回车键,跳转至密码重置界面进行重置操作:</div>
  2067. <div style="text-align: center; color: #368fec; font-weight: bold;">https://my.mic-partners.com/forget.html?token=V_TOKEN_V</div>
  2068. <div style="text-align: center; font-weight: bold; margin-top: 15px;">有效期至: V_EXPIRE_TIME_V&nbsp;</div>
  2069. <div style="padding: 25px 0;">MIC &nbsp;团队</div>
  2070. </div>
  2071. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2072. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com&nbsp;</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  2073. </div>
  2074. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2075. </div>
  2076. </div>]
  2077. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2078. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [密码重置]
  2079. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2080. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 密码重置]
  2081. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2082. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [58]
  2083. 16:18:17.502 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2084. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2085. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2086. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2087. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2088. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2089. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2090. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2091. 16:18:17.502 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [USER_UPDATE_PASSWORD_SEND_EN]
  2092. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2093. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2094. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2095. <div>&nbsp;</div>
  2096. </div>
  2097. <div style="width: 100%;">
  2098. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V:</div>
  2099. <div style="padding: 20px 0; line-height: 2;">You are resetting the&nbsp; password. Please click the button below to reset the password:</div>
  2100. <div style="margin: auto; line-height: 36px; background-color: #e8b45a; border-radius: 2px; width: 130px; text-align: center; color: #ffffff; font-weight: bold;"><span style="text-decoration: underline;"><a style="text-decoration: none; color: #ffffff;" href="https://my.mic-partners.com/forget.html?token=V_TOKEN_V">Password Reset</a></span></div>
  2101. <div style="padding: 25px 0;">If you are not able to click the button above, please copy the URL link below, paste it on your browser's address bar and press return, redirect to password reset page and perform the action:</div>
  2102. <div style="text-align: center; color: #368fec; font-weight: bold;">https://my.mic-partners.com/forget.html?token=V_TOKEN_V</div>
  2103. <div style="text-align: center; font-weight: bold; margin-top: 15px;">This link will valid until: V_EXPIRE_TIME_V&nbsp;</div>
  2104. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;">&nbsp;Team</strong></div>
  2105. </div>
  2106. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2107. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, pleasesend email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2108. </div>
  2109. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2110. </div>
  2111. </div>]
  2112. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2113. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Password Reset Notification]
  2114. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2115. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Password Reset Notification]
  2116. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2117. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [59]
  2118. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2119. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2120. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2121. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2122. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2123. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2124. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2125. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2126. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_FINANCE_DEPOSIT_NOTICE_NAME_CN]
  2127. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2128. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2129. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2130. <div>&nbsp;</div>
  2131. </div>
  2132. <div style="width: 100%;">
  2133. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2134. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2135. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">存款已完成!</span></div>
  2136. <div style="padding: 20px 0 40px; line-height: 2;">您的交易账户 : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,已成功入账 <span style="font-weight: bold;">$ V_DEPOSIT_AMOUNT_V </span>&nbsp;,请在交易账户中查看,预祝您交易顺利!</div>
  2137. <div style="padding: 25px 0;">MIC 团队</div>
  2138. </div>
  2139. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2140. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com&nbsp;</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  2141. </div>
  2142. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2143. <div style="display: flex; justify-content: space-between; align-content: center;">
  2144. <div style="font-weight: bold; font-size: 12px;">&nbsp;</div>
  2145. <div>&nbsp;</div>
  2146. </div>
  2147. </div>
  2148. </div>]
  2149. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2150. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [存款通知]
  2151. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2152. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 存款通知]
  2153. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2154. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [60]
  2155. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2156. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2157. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2158. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2159. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2160. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2161. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2162. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2163. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_FINANCE_DEPOSIT_NOTICE_NAME_EN]
  2164. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2165. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2166. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2167. <div>&nbsp;</div>
  2168. </div>
  2169. <div style="width: 100%;">
  2170. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  2171. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2172. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Deposit Successful!</span></div>
  2173. <div style="padding: 20px 0 40px; line-height: 2;">Your trading account : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,deposit amount <span style="font-weight: bold;">$ V_DEPOSIT_AMOUNT_V </span>&nbsp;,successful, please check your trading account.</div>
  2174. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  2175. </div>
  2176. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2177. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please send email to&nbsp;</span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2178. </div>
  2179. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">General risk warning:</span>Contracts for differences (CFD) are leveraged products. Contract for difference (CFD) transactions are high risk and may not be applicable to all investors. The value of the investment may increase or decrease, and investors may lose all of their investment. In no event shall the company be liable for all or part of any loss or damage to any person or entity arising out of or in connection with a contract for difference (CFD) transaction.</div>
  2180. <div style="display: flex; justify-content: space-between; align-content: center;">&nbsp;</div>
  2181. </div>
  2182. </div>]
  2183. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2184. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Deposit Notification]
  2185. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2186. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC- Deposit Notification]
  2187. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2188. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [61]
  2189. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2190. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2191. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2192. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2193. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2194. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2195. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2196. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2197. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_DEAL_REST_PASSWORD_COMPLETE_SEND_CN]
  2198. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2199. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #6c5835; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2200. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2201. <div>&nbsp;</div>
  2202. </div>
  2203. <div style="width: 100%;">
  2204. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2205. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2206. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;">交易密码已重置成功</div>
  2207. <div style="padding: 20px 0 40px; line-height: 2;">您的交易账户 : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,交易密码已重置成功,您可以使用设置的新密码登录至交易账户</div>
  2208. <div style="padding: 25px 0;">MIC 团队</div>
  2209. </div>
  2210. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2211. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  2212. </div>
  2213. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2214. <div style="display: flex; justify-content: space-between; align-content: center;">
  2215. <div style="font-weight: bold; font-size: 12px;"><a href="https://www.mic-partners.com">www.mic-partners.com</a></div>
  2216. <div>&nbsp;</div>
  2217. </div>
  2218. </div>
  2219. </div>]
  2220. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2221. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [交易密码重置完成通知]
  2222. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2223. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 交易密码重置完成通知]
  2224. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2225. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [62]
  2226. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2227. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2228. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2229. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2230. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2231. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2232. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2233. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2234. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_DEAL_REST_PASSWORD_COMPLETE_SEND_EN]
  2235. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2236. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #6c5835; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2237. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" />
  2238. <div>&nbsp;</div>
  2239. </div>
  2240. <div style="width: 100%;">
  2241. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  2242. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2243. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;">Trading Password Reset Successful</div>
  2244. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-family: Calibri; font-size: 10.5pt;">Your trading account</span>: <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,<span style="font-family: Calibri; font-size: 10.5pt;">trading password has been reset successfully. You may use your new trading password to log on to your trading account.</span></div>
  2245. <div style="padding: 25px 0px; line-height: 1.8;"><span style="font-size: 14px;">BEST,</span><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  2246. </div>
  2247. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2248. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please &nbsp;send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  2249. </div>
  2250. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">General risk warning:</span>Contracts for differences (CFD) are leveraged products. Contract for difference (CFD) transactions are high risk and may not be applicable to all investors. The value of the investment may increase or decrease, and investors may lose all of their investment. In no event shall the company be liable for all or part of any loss or damage to any person or entity arising out of or in connection with a contract for difference (CFD) transaction.</div>
  2251. <div style="display: flex; justify-content: space-between; align-content: center;">
  2252. <div style="font-weight: bold; font-size: 12px;"><a href="https://www.mic-partners.com">www.mic-partners.com</a></div>
  2253. <div>&nbsp;</div>
  2254. </div>
  2255. </div>
  2256. </div>]
  2257. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2258. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Trading Password Reset Successful]
  2259. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2260. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Trading Password Reset Successful]
  2261. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2262. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [63]
  2263. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2264. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2265. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2266. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2267. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2268. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2269. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2270. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2271. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_INVESTOR_CHANG_PASSWORD_COMPLETE_SEND_CN]
  2272. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2273. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2274. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2275. <div>&nbsp;</div>
  2276. </div>
  2277. <div style="width: 100%;">
  2278. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2279. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2280. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">投资人密码已修改成功</span></div>
  2281. <div style="padding: 20px 0 40px; line-height: 2;">您的交易账户 : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;,投资人密码已修改成功,您可以使用设置的新密码登录至交易账户</div>
  2282. <div style="padding: 25px 0;">MIC 团队</div>
  2283. </div>
  2284. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2285. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</div>
  2286. </div>
  2287. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2288. </div>
  2289. </div>]
  2290. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2291. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [投资人密码修改完成通知]
  2292. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2293. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 投资人密码修改完成通知]
  2294. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2295. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [64]
  2296. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2297. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2298. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2299. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2300. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2301. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2302. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2303. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2304. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_INVESTOR_CHANG_PASSWORD_COMPLETE_SEND_EN]
  2305. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2306. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2307. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  2308. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /></div>
  2309. </div>
  2310. <div style="width: 100%;">
  2311. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  2312. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2313. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Investor Password Reset Successful</span></div>
  2314. <div style="padding: 20px 0 40px; line-height: 2;">Your trading account : <span style="font-weight: bold;">V_LOGIN_V </span>&nbsp;, investor password has been reset successfully. You may use your new investor password to log on to your trading account.</div>
  2315. <div style="padding: 20px 0 40px; line-height: 2;"><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  2316. </div>
  2317. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2318. <div style="color: #797979; font-size: 12px; line-height: 2;">Should you have any inquiries or require assistance, please &nbsp;send email to <a href="mailto:mic_partnership@126.com ">mic_partnership@126.com </a>. Our customer support team looks forward to serving you better.</div>
  2319. </div>
  2320. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2321. </div>
  2322. </div>]
  2323. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2324. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Investor Password Reset Successful]
  2325. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2326. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Investor Password Reset Successful]
  2327. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2328. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [65]
  2329. 16:18:17.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2330. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2331. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2332. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2333. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2334. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2335. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2336. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2337. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_PASSWORD_COMPLETE_SEND_CN]
  2338. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2339. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2340. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2341. <div>&nbsp;</div>
  2342. </div>
  2343. <div style="width: 100%;">
  2344. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2345. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2346. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">专区密码已修改成功</span></div>
  2347. <div style="padding: 20px 0 40px; line-height: 2;">您的客户专区密码已修改成功,您可以使用设置的<strong>新密码</strong>以及<strong>电子邮件地址</strong>,登录到<a href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener">个人中心</a></div>
  2348. <div style="padding: 25px 0;">MIC 团队</div>
  2349. </div>
  2350. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2351. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com&nbsp;</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  2352. </div>
  2353. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2354. </div>
  2355. </div>]
  2356. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2357. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [密码重置成功通知]
  2358. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2359. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 密码重置成功通知]
  2360. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2361. 16:18:17.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [66]
  2362. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2363. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2364. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2365. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2366. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2367. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2368. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2369. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2370. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_UPDATE_PASSWORD_COMPLETE_SEND_EN]
  2371. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2372. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2373. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2374. <div>&nbsp;</div>
  2375. </div>
  2376. <div style="width: 100%;">
  2377. <div style="font-weight: bold; padding: 25px 0;">Dear&nbsp; V_NAME_V :</div>
  2378. <div style="margin: auto; width: 100px;"><img style="width: 100%;" src="https://admin.mic-partners.com/icon/cg.png" alt="" /></div>
  2379. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Password Reset Successful</span></div>
  2380. <div style="padding: 20px 0 40px; line-height: 2;">Your account password has been reset successfully. You may use your <strong>new password </strong>and <strong>email address</strong> to log on to your account's <a href="https://my.mic-partners.com/#/signin" target="_blank" rel="noopener"><strong><span style="text-decoration: underline;"><span style="color: #3598db; text-decoration: underline;">client zone</span></span></strong>.</a></div>
  2381. <div style="padding: 20px 0 40px; line-height: 2;">MIC Team</div>
  2382. </div>
  2383. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2384. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please &nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2385. </div>
  2386. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2387. </div>
  2388. </div>]
  2389. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2390. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Password Reset Successful]
  2391. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2392. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Password Reset Successful]
  2393. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2394. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [67]
  2395. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2396. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2397. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2398. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2399. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2400. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2401. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2402. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2403. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_FINANCE_TRANSFER_NOTICE_NAME_CN]
  2404. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2405. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2406. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2407. <div>&nbsp;</div>
  2408. </div>
  2409. <div style="width: 100%;">
  2410. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2411. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">内部转账已完成!</span></div>
  2412. <div style="padding: 20px 0; line-height: 2;">您的内部转账操作已完成,可即时登录您的交易账户查看:</div>
  2413. <div style="padding: 20px 35px; font-size: 12px;">
  2414. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center;">转出账户:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_WITHDRAW_LOGIN_V </span></div>
  2415. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center;">转入账户:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_DEPOSIT_LOGIN_V </span></div>
  2416. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center;">金额:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">$ V_DEPOSIT_AMOUNT_V </span></div>
  2417. </div>
  2418. <div style="padding: 25px 0;">MIC 团队</div>
  2419. </div>
  2420. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2421. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">若有任何疑问或帮助,请发送邮件至 mic_partnership@126.com&nbsp;&nbsp;与我们联系。我们的客服支持团队期待您的垂询。</span></span></div>
  2422. </div>
  2423. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2424. </div>
  2425. </div>]
  2426. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2427. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [内转完成通知]
  2428. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2429. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 内转完成通知]
  2430. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2431. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [68]
  2432. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2433. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2434. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2435. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2436. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2437. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2438. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2439. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2440. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_FINANCE_TRANSFER_NOTICE_NAME_EN]
  2441. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2442. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2443. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  2444. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /></div>
  2445. </div>
  2446. <div style="width: 100%;">
  2447. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  2448. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Internal Transfer has been approved!</span></div>
  2449. <div style="padding: 20px 0; line-height: 2;">Your internal transfer has been approved, you may log on to your trading account and check:</div>
  2450. <div style="padding: 20px 35px; font-size: 12px;">
  2451. <div style="display: flex; line-height: 38px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">From Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_WITHDRAW_LOGIN_V </span></div>
  2452. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Recipient Account:</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">&nbsp;V_DEPOSIT_LOGIN_V </span></div>
  2453. <div style="display: flex; line-height: 38px; margin-top: 25px;"><span style="min-width: 120px; background-color: #f0f0f0; border: 1px solid #E1E1E1; text-align: center; padding: 0 8px;">Amount:&nbsp;</span> <span style="flex: 1; border: 1px solid #E1E1E1; padding: 0 8px; min-width: 250px; box-sizing: border-box; border-left: none; font-weight: bold;">$ V_DEPOSIT_AMOUNT_V </span></div>
  2454. </div>
  2455. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  2456. </div>
  2457. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2458. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please </span></span><span style="color: #797979;"><span style="font-size: 12px;">&nbsp;send email to</span></span><span style="color: #0000ee;"><span style="font-size: 12px;"><u>mic_partnership@126.com </u></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2459. </div>
  2460. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2461. </div>
  2462. </div>]
  2463. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2464. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Internal Transfer Notification]
  2465. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2466. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Internal Transfer Notification]
  2467. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2468. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [69]
  2469. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2470. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2471. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2472. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2473. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2474. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2475. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2476. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2477. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_SUBMIT_VERIFICATION_NOTICE_NAME_CN]
  2478. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2479. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2480. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2481. <div>&nbsp;</div>
  2482. </div>
  2483. <div style="width: 100%;">
  2484. <div style="font-weight: bold; padding: 25px 0;">尊敬的客户:</div>
  2485. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">感谢您选择 MIC!</span></div>
  2486. <div style="padding: 20px 0; line-height: 2;">您的资料已经提交成功 ,核验资料通常需要花费1-24个小时。</div>
  2487. <div style="padding: 25px 0;">MIC 团队</div>
  2488. </div>
  2489. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2490. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请发送邮件至 <span style="color: #368fec; text-decoration: underline; font-weight: bold;">mic_partnership@126.com</span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  2491. </div>
  2492. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2493. </div>
  2494. </div>]
  2495. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2496. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [递交核验通知]
  2497. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2498. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 递交核验通知]
  2499. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2500. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [70]
  2501. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2502. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2503. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-04-01 14:55:48.0]
  2504. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2505. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2506. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2507. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2508. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2509. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [CUSTOM_SUBMIT_VERIFICATION_NOTICE_NAME_EN]
  2510. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2511. <div style="height: auto; border: 1px solid #E1E1E1; border-bottom: 2px solid #e8b45a; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2512. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="width: 332px; height: 75px; display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" />
  2513. <div>&nbsp;</div>
  2514. </div>
  2515. <div style="width: 100%;">
  2516. <div style="font-weight: bold; padding: 25px 0;">Dear Sir/Madam,</div>
  2517. <div style="font-size: 18px; font-weight: bold; padding: 25px 0; text-align: center;"><span style="color: #e8b357;">Congratulations on the approval of your document verification!</span></div>
  2518. <div style="padding: 20px 0; line-height: 2;"><span style="font-size: 14px;">Thank you for choosing MIC as your preferred broker and we wish you a successful and profitable trading!</span></div>
  2519. <div style="padding: 25px 0px; line-height: 1.8;"><br /><span style="font-size: 14px;"><strong>MIC</strong></span><strong style="font-size: 14px;"> Team</strong></div>
  2520. </div>
  2521. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2522. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please&nbsp;send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com</u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2523. </div>
  2524. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2525. </div>
  2526. </div>]
  2527. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2528. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Verification Notification]
  2529. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2530. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Verification Notification]
  2531. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2532. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [71]
  2533. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2534. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2535. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-11-28 17:39:27.0]
  2536. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2537. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2538. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2539. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2540. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2541. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACTIVITY_APPROVE_SEND_CN]
  2542. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2543. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2544. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /><br />
  2545. <div>&nbsp;</div>
  2546. </div>
  2547. <div style="width: 100%;">
  2548. <div style="font-weight: bold; padding: 25px 0;">尊敬的 V_NAME_V :</div>
  2549. <div style="font-size: 18px; font-weight: bold; padding: 25px 0 0; text-align: center; color: rgba(235, 63, 87, 1);"><span style="color: #e8b357;">V_ACTIVITY_NAME_V&nbsp;</span></div>
  2550. <div style="font-size: 16px; font-weight: bold; padding: 10px 0; text-align: center;">V_PUSH_MESSAGE_V&nbsp;</div>
  2551. <div style="padding: 20px 0; line-height: 2; color: rgba(235, 63, 87, 1); font-weight: bold;"><span style="color: #e8b357;">* V_APPROVE_DESC_V&nbsp;</span></div>
  2552. <div style="padding: 25px 0;">MIC 团队</div>
  2553. </div>
  2554. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2555. <div style="color: #797979; font-size: 12px; line-height: 2;">若有任何疑问或帮助,请致电 发送邮件至<span style="color: #3598db;"><a style="color: #3598db;" href="mailto:mic_partnership@126.com">mic_partnership@126.com </a></span> 与我们联系。我们的客服支持团队期待您的垂询。</div>
  2556. </div>
  2557. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><span style="font-weight: bold;">一般风险警告:</span>差价合约 (CFD) 是杠杆产品。差价合约 (CFD)交易存在较高风险,因此可能不适用于所有投资人。投资价值既可能增加也可能减少,而且投资人可能损失他们所有的投资。在任何情况下,本公司对任何个人或实体由差价合约 (CFD)交易造成的或产生的或关联的全部或部分损失或损害,都不承担任何责任。</div>
  2558. </div>
  2559. </div>]
  2560. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2561. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [推送通知]
  2562. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2563. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - 推送通知]
  2564. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2565. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [73]
  2566. 16:18:17.533 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_email_template set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, email_config_id=?, name=?, notification_object=?, subject=?, type=? where id=?
  2567. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  2568. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-11-28 17:39:29.0]
  2569. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2570. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2571. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:18:17 CST 2022]
  2572. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2573. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2574. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ACTIVITY_APPROVE_SEND_EN]
  2575. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [<div style="width: 640px;">
  2576. <div style="height: auto; border: 1px solid #E1E1E1; background-color: #ffffff; padding: 25px; font-size: 14px;">
  2577. <div style="border-bottom: 1px solid #E1E1E1; display: flex; justify-content: space-between; padding-bottom: 25px;">
  2578. <div><img src="https://my.mic-partners.com/icon/logo.png" alt="" width="332" height="75" /></div>
  2579. </div>
  2580. <div style="width: 100%;">
  2581. <div style="font-weight: bold; padding: 25px 0;">Dear V_NAME_V :</div>
  2582. <div style="font-size: 18px; font-weight: bold; padding: 25px 0 0; text-align: center; color: rgba(235, 63, 87, 1);"><span style="color: #e8b357;">V_ACTIVITY_NAME_V&nbsp;</span></div>
  2583. <div style="font-size: 16px; font-weight: bold; padding: 10px 0; text-align: center;">V_PUSH_MESSAGE_V&nbsp;</div>
  2584. <div style="padding: 20px 0; line-height: 2; color: rgba(235, 63, 87, 1); font-weight: bold;"><span style="color: #e8b357;">* V_APPROVE_DESC_V&nbsp;</span></div>
  2585. <div style="padding: 25px 0;">MIC Team</div>
  2586. </div>
  2587. <div style="display: flex; padding: 35px 0; border-top: 1px solid #E1E1E1; border-bottom: 1px solid #E1E1E1;">
  2588. <div style="color: #797979; font-size: 12px; line-height: 2;"><span style="color: #797979;"><span style="font-size: 12px;">Should you have any inquiries or require assistance, please </span></span><span style="color: #797979;"><span style="font-size: 12px;">send email to </span></span><span style="color: #3598db;"><span style="font-size: 12px;"><strong><u>mic_partnership@126.com </u></strong></span></span><span style="color: #797979;"><span style="font-size: 12px;">. Our customer support team looks forward to serving you better.</span></span></div>
  2589. </div>
  2590. <div style="color: #aeaeae; padding: 30px 0; font-size: 12px; line-height: 1.6;"><strong>General risk warning:&nbsp;</strong>CFDs (contract for difference) are complex instruments and come with a high risk due to leverage and may not be suitable for all the investors. Investment value may increase or decrease, and investors may lose all of their funds. In any case, the company shall not be liable and responsible for any individual or entity&rsquo;s total or partial loss or risk caused by or incurred by or related to a contract for difference (CFD) transaction.</div>
  2591. </div>
  2592. </div>]
  2593. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2594. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [Notification]
  2595. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2596. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MIC - Notification]
  2597. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [SYSTEM]
  2598. 16:18:17.533 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [74]
  2599. 16:18:20.845 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  2600. 16:22:00.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2601. 16:23:18.168 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2602. 16:23:18.168 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2603. 16:23:28.154 [http-nio-8500-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 ? for update
  2604. 16:23:28.170 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2605. 16:23:28.170 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  2606. 16:23:28.170 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2607. 16:23:28.170 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2608. 16:23:28.170 [http-nio-8500-exec-1] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657441408170,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500006","V_NAME_V":"开 袁","V_EMAIL_V":"287114768@qq.com","V_DATE_TIME_V":"2022-07-10 16:23:28"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"287114768@qq.com"}
  2609. 16:23:28.186 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  2610. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.199.244]
  2611. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 16:20:58.0]
  2612. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [6]
  2613. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2614. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:23:28 CST 2022]
  2615. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2616. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2617. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2618. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 10 16:23:28 CST 2022]
  2619. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2620. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2621. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [大幅度@#京东价个]
  2622. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20094]
  2623. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2624. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-10 16:22:58.0]
  2625. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2626. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2022-07-05 00:00:00.0]
  2627. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500006]
  2628. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2629. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2630. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [怒江]
  2631. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2632. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2633. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2634. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2635. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [287114768@qq.com]
  2636. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [开]
  2637. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  2638. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2639. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2640. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2641. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2642. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [37884947789988333]
  2643. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2644. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
  2645. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [106.47.199.244]
  2646. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [袁]
  2647. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 16:20:58.0]
  2648. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2649. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Kai Yuan]
  2650. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [AF]
  2651. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6ea22f9ab0a764caf6752f1fefd11ec8]
  2652. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [83938474]
  2653. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
  2654. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2655. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2656. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [9099833]
  2657. 16:23:28.186 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [6]
  2658. 16:24:33.315 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  2659. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  2660. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  2661. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  2662. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2663. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  2664. 16:24:33.315 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  2665. 16:24:33.409 [http-nio-8500-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 (? , ?)
  2666. 16:24:33.409 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  2667. 16:24:33.409 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  2668. 16:24:33.643 [http-nio-8500-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=?
  2669. 16:24:33.643 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  2670. 16:24:33.815 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  2671. 16:24:33.830 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  2672. 16:24:33.830 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  2673. 16:24:34.018 [http-nio-8500-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_
  2674. 16:24:34.018 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  2675. 16:24:34.018 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  2676. 16:24:34.362 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  2677. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  2678. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  2679. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  2680. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  2681. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  2682. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  2683. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  2684. 16:24:34.362 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  2685. 16:24:34.502 [http-nio-8500-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 (? , ? , ? , ?)
  2686. 16:24:34.502 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  2687. 16:24:34.502 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  2688. 16:24:34.502 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  2689. 16:24:34.502 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  2690. 16:24:34.643 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  2691. 16:24:34.643 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  2692. 16:24:34.643 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  2693. 16:24:34.862 [http-nio-8500-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=?
  2694. 16:24:34.877 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  2695. 16:24:35.018 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  2696. 16:24:35.221 [http-nio-8500-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 (? , ?)
  2697. 16:24:35.221 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  2698. 16:24:35.221 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  2699. 16:27:00.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2700. 16:32:00.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2701. 16:34:00.111 [http-nio-8500-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 (? , ?)
  2702. 16:34:00.127 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2703. 16:34:00.127 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2704. 16:34:00.268 [http-nio-8500-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 (? , ?)
  2705. 16:34:00.268 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  2706. 16:34:00.268 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  2707. 16:34:00.377 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  2708. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  2709. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  2710. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  2711. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  2712. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  2713. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  2714. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  2715. 16:34:00.377 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  2716. 16:34:00.768 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  2717. 16:34:00.783 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  2718. 16:34:00.783 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  2719. 16:34:00.924 [http-nio-8500-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_
  2720. 16:34:00.940 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  2721. 16:34:00.940 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  2722. 16:34:01.408 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2723. 16:34:01.580 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  2724. 16:34:01.596 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  2725. 16:34:01.596 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  2726. 16:34:01.596 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  2727. 16:34:01.596 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  2728. 16:34:01.596 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  2729. 16:35:33.349 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  2730. 16:35:33.365 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  2731. 16:35:33.365 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  2732. 16:35:33.365 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  2733. 16:35:33.365 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  2734. 16:35:33.568 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2735. 16:35:33.568 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2736. 16:35:33.615 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2737. 16:37:00.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2738. 16:39:43.620 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  2739. 16:39:43.776 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  2740. 16:40:12.995 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2741. 16:40:12.995 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  2742. 16:41:21.169 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2743. 16:41:21.169 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2744. 16:41:21.169 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  2745. 16:41:21.169 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2746. 16:41:21.184 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  2747. 16:41:21.184 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  2748. 16:41:21.184 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  2749. 16:41:21.200 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  2750. 16:42:01.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2751. 16:42:04.643 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2752. 16:42:04.643 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2753. 16:42:29.081 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2754. 16:42:29.081 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2755. 16:42:38.112 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2756. 16:42:38.128 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2757. 16:43:18.784 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  2758. 16:43:18.800 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  2759. 16:43:30.331 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  2760. 16:43:30.331 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  2761. 16:43:30.331 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  2762. 16:43:30.331 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  2763. 16:43:30.347 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  2764. 16:43:30.519 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2765. 16:43:30.519 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2766. 16:43:30.581 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2767. 16:44:05.019 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2768. 16:44:05.019 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2769. 16:44:05.019 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  2770. 16:44:05.035 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2771. 16:44:05.035 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  2772. 16:44:05.035 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  2773. 16:44:05.035 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  2774. 16:44:05.051 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  2775. 16:46:33.694 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  2776. 16:46:33.694 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  2777. 16:46:55.383 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2778. 16:46:55.383 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  2779. 16:47:01.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2780. 16:49:42.448 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as col_0_0_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2781. 16:49:42.448 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2782. 16:49:42.448 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.username=? limit ?
  2783. 16:49:42.448 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [sales01]
  2784. 16:49:42.464 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.email=? limit ?
  2785. 16:49:42.464 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [sales01@mic.com]
  2786. 16:49:42.480 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_0_, userroleta0_.add_ip as add_ip2_98_0_, userroleta0_.add_time as add_time3_98_0_, userroleta0_.add_user as add_user4_98_0_, userroleta0_.modify_ip as modify_i5_98_0_, userroleta0_.modify_time as modify_t6_98_0_, userroleta0_.modify_user as modify_u7_98_0_, userroleta0_.note as note8_98_0_, userroleta0_.code as code9_98_0_, userroleta0_.content as content10_98_0_, userroleta0_.department_id as departm11_98_0_, userroleta0_.name as name12_98_0_, userroleta0_.number as number13_98_0_ from user_role userroleta0_ where userroleta0_.id=?
  2787. 16:49:42.480 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2788. 16:49:42.480 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_0_, userinfota0_.add_ip as add_ip2_96_0_, userinfota0_.add_time as add_time3_96_0_, userinfota0_.add_user as add_user4_96_0_, userinfota0_.modify_ip as modify_i5_96_0_, userinfota0_.modify_time as modify_t6_96_0_, userinfota0_.modify_user as modify_u7_96_0_, userinfota0_.note as note8_96_0_, userinfota0_.agent_level as agent_le9_96_0_, userinfota0_.all_commission as all_com10_96_0_, userinfota0_.balance as balance11_96_0_, userinfota0_.c_id as c_id12_96_0_, userinfota0_.commission as commiss13_96_0_, userinfota0_.commission_approval as commiss14_96_0_, userinfota0_.custom_id as custom_15_96_0_, userinfota0_.email as email16_96_0_, userinfota0_.frozen as frozen17_96_0_, userinfota0_.group_id as group_i18_96_0_, userinfota0_.hide as hide19_96_0_, userinfota0_.ib_no as ib_no20_96_0_, userinfota0_.lang as lang21_96_0_, userinfota0_.last_address as last_ad22_96_0_, userinfota0_.last_ip as last_ip23_96_0_, userinfota0_.last_time as last_ti24_96_0_, userinfota0_.mt_five_account as mt_five25_96_0_, userinfota0_.mt_four_account as mt_four26_96_0_, userinfota0_.name as name27_96_0_, userinfota0_.p_stamp as p_stamp28_96_0_, userinfota0_.password as passwor29_96_0_, userinfota0_.pid as pid30_96_0_, userinfota0_.point_id as point_i31_96_0_, userinfota0_.role_id as role_id32_96_0_, userinfota0_.sales_id as sales_i33_96_0_, userinfota0_.stamp as stamp34_96_0_, userinfota0_.unresolved as unresol35_96_0_, userinfota0_.username as usernam36_96_0_, userinfota0_.valid as valid37_96_0_ from user_info userinfota0_ where userinfota0_.id=?
  2789. 16:49:42.480 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  2790. 16:49:42.495 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.pid=?
  2791. 16:49:42.495 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  2792. 16:49:42.511 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - insert into user_info (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_level, all_commission, balance, c_id, commission, commission_approval, custom_id, email, frozen, group_id, hide, ib_no, lang, last_address, last_ip, last_time, mt_five_account, mt_four_account, name, p_stamp, password, pid, point_id, role_id, sales_id, stamp, unresolved, username, valid) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2793. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  2794. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:49:42 CST 2022]
  2795. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2796. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2797. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2798. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2799. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2800. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2801. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2802. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2803. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500007]
  2804. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2805. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2806. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2807. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [sales01@mic.com]
  2808. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2809. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2810. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2811. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [CN002]
  2812. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2813. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  2814. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  2815. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  2816. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2817. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2818. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [salas]
  2819. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010101]
  2820. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e64b78fc3bc91bcbc7dc232ba8ec59e0]
  2821. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2822. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2823. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1023]
  2824. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2825. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01010103]
  2826. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2827. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [sales01]
  2828. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2829. 16:49:42.511 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ? for update
  2830. 16:49:42.511 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2831. 16:49:42.526 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update user_role set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, department_id=?, name=?, number=? where id=?
  2832. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.115.44.42]
  2833. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-19 01:51:07.0]
  2834. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2835. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2836. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:49:42 CST 2022]
  2837. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2838. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2839. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ROLE_SALE]
  2840. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  2841. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  2842. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [销售]
  2843. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2844. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1023]
  2845. 16:49:42.526 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2846. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  2847. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:49:42 CST 2022]
  2848. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2849. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2850. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2851. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2852. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2853. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2854. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2855. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2856. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500007]
  2857. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2858. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2859. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2860. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [sales01@mic.com]
  2861. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2862. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2863. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2864. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [CN002]
  2865. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2866. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  2867. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  2868. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  2869. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2870. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2871. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [salas]
  2872. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010101]
  2873. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e64b78fc3bc91bcbc7dc232ba8ec59e0]
  2874. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2875. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2876. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1023]
  2877. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20096]
  2878. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01010103]
  2879. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2880. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [sales01]
  2881. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2882. 16:49:42.526 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20096]
  2883. 16:50:00.876 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2884. 16:50:00.876 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [sales01]
  2885. 16:50:00.876 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e64b78fc3bc91bcbc7dc232ba8ec59e0]
  2886. 16:50:00.876 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2887. 16:50:00.876 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2888. 16:50:00.891 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2889. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2890. 16:50:00.891 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2891. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2892. 16:50:00.891 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2893. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  2894. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 16:49:42.0]
  2895. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2896. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2897. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2898. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2899. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2900. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2901. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2902. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2903. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500007]
  2904. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2905. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2906. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2907. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [sales01@mic.com]
  2908. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2909. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2910. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2911. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [CN002]
  2912. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2913. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [美国德克萨斯]
  2914. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [16.162.22.145]
  2915. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 16:50:00 CST 2022]
  2916. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2917. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2918. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [salas]
  2919. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010101]
  2920. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e64b78fc3bc91bcbc7dc232ba8ec59e0]
  2921. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2922. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2923. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1023]
  2924. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20096]
  2925. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01010103]
  2926. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2927. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [sales01]
  2928. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2929. 16:50:00.891 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20096]
  2930. 16:50:01.079 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysactiont0_.id as id1_71_, sysactiont0_.add_ip as add_ip2_71_, sysactiont0_.add_time as add_time3_71_, sysactiont0_.add_user as add_user4_71_, sysactiont0_.modify_ip as modify_i5_71_, sysactiont0_.modify_time as modify_t6_71_, sysactiont0_.modify_user as modify_u7_71_, sysactiont0_.note as note8_71_, sysactiont0_.action as action9_71_, sysactiont0_.code as code10_71_, sysactiont0_.name as name11_71_, sysactiont0_.node_id as node_id12_71_, sysactiont0_.valid as valid13_71_ from sys_action sysactiont0_ order by sysactiont0_.code asc
  2931. 16:50:01.094 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userrolede0_.id as id1_99_, userrolede0_.add_ip as add_ip2_99_, userrolede0_.add_time as add_time3_99_, userrolede0_.add_user as add_user4_99_, userrolede0_.modify_ip as modify_i5_99_, userrolede0_.modify_time as modify_t6_99_, userrolede0_.modify_user as modify_u7_99_, userrolede0_.note as note8_99_, userrolede0_.action_id as action_i9_99_, userrolede0_.node_id as node_id10_99_, userrolede0_.role_id as role_id11_99_ from user_role_detail userrolede0_ where userrolede0_.role_id=?
  2932. 16:50:01.094 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2933. 16:51:35.258 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2934. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
  2935. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2936. 16:51:35.258 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2937. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  2938. 16:51:35.258 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2939. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  2940. 16:51:35.258 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2941. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2942. 16:51:35.258 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2943. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  2944. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  2945. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2946. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
  2947. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
  2948. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2949. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2950. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2951. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2952. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2953. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  2954. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2955. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2956. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2957. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
  2958. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2959. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2960. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2961. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  2962. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2963. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [美国德克萨斯]
  2964. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [16.162.22.145]
  2965. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 16:51:35 CST 2022]
  2966. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2967. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2968. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  2969. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  2970. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2971. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  2972. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2973. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  2974. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2975. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
  2976. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2977. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
  2978. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2979. 16:51:35.258 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  2980. 16:52:01.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2981. 16:53:21.684 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  2982. 16:53:21.856 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  2983. 16:54:26.421 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id in (?)
  2984. 16:54:26.421 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20096]
  2985. 16:54:26.437 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id in (?) for update
  2986. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1023]
  2987. 16:54:26.437 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update user_role set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, department_id=?, name=?, number=? where id=?
  2988. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.115.44.42]
  2989. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-19 01:51:07.0]
  2990. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2991. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  2992. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 16:54:26 CST 2022]
  2993. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2994. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2995. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ROLE_SALE]
  2996. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  2997. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  2998. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [销售]
  2999. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3000. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1023]
  3001. 16:54:26.437 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - delete from user_info where id=?
  3002. 16:54:26.437 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20096]
  3003. 16:56:51.194 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  3004. 16:56:51.194 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3005. 16:56:51.194 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  3006. 16:56:51.194 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3007. 16:56:51.194 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3008. 16:56:51.210 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  3009. 16:56:51.210 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  3010. 16:56:51.366 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3011. 16:57:01.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3012. 16:57:45.526 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3013. 16:57:46.338 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3014. 16:57:46.338 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3015. 16:57:46.338 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3016. 16:57:46.338 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3017. 16:57:46.338 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3018. 16:57:46.338 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3019. 16:57:57.261 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3020. 16:57:57.276 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3021. 16:57:57.276 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3022. 16:57:57.292 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  3023. 16:57:57.292 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  3024. 16:57:57.292 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3025. 16:57:57.292 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  3026. 16:57:57.292 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  3027. 16:57:57.292 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3028. 16:57:57.636 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3029. 17:01:45.050 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3030. 17:01:45.050 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3031. 17:01:45.050 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3032. 17:01:45.050 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3033. 17:01:45.050 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3034. 17:01:45.050 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3035. 17:02:01.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3036. 17:03:35.179 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3037. 17:03:35.179 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3038. 17:03:35.179 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3039. 17:03:35.179 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3040. 17:03:35.179 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3041. 17:03:35.179 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3042. 17:04:39.340 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3043. 17:04:39.340 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3044. 17:04:39.340 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3045. 17:04:39.340 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3046. 17:04:39.340 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3047. 17:04:39.340 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3048. 17:07:01.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3049. 17:07:03.326 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3050. 17:07:03.326 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3051. 17:07:03.326 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3052. 17:07:03.326 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3053. 17:07:03.342 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3054. 17:07:03.342 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3055. 17:12:01.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3056. 17:12:37.085 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3057. 17:12:37.085 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3058. 17:12:37.085 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3059. 17:12:37.085 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3060. 17:12:37.085 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3061. 17:12:37.085 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3062. 17:15:37.036 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  3063. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  3064. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  3065. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  3066. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  3067. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  3068. 17:15:37.036 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  3069. 17:15:37.052 [http-nio-8500-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 (? , ?)
  3070. 17:15:37.052 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  3071. 17:15:37.052 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  3072. 17:15:37.193 [http-nio-8500-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=?
  3073. 17:15:37.193 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  3074. 17:15:37.193 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  3075. 17:15:37.208 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3076. 17:15:37.208 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3077. 17:15:37.349 [http-nio-8500-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_
  3078. 17:15:37.364 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3079. 17:15:37.364 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3080. 17:15:37.583 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  3081. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  3082. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  3083. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  3084. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  3085. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  3086. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  3087. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  3088. 17:15:37.583 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  3089. 17:15:37.708 [http-nio-8500-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 (? , ? , ? , ?)
  3090. 17:15:37.708 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  3091. 17:15:37.708 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  3092. 17:15:37.708 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  3093. 17:15:37.708 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  3094. 17:15:37.943 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3095. 17:15:37.943 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3096. 17:15:37.943 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3097. 17:15:38.193 [http-nio-8500-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=?
  3098. 17:15:38.193 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  3099. 17:15:38.302 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  3100. 17:15:38.521 [http-nio-8500-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 (? , ?)
  3101. 17:15:38.521 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  3102. 17:15:38.521 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  3103. 17:17:01.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3104. 17:19:50.442 [http-nio-8500-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 (? , ?)
  3105. 17:19:50.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  3106. 17:19:50.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  3107. 17:20:03.155 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657444803155,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"UPDATE_CONFIG_EMAIL_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2022-07-10 17:25:03","V_CODE_V":"218278","V_DATE_TIME_V":"2022-07-10 17:20:03"},"note":null,"sendDate":null,"subject":null,"templateName":"CONFIG_UPDATE_EMAIL_CODE_SEND","users":"mic_partnership@126.com"}
  3108. 17:20:18.702 [http-nio-8500-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_
  3109. 17:20:18.717 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code=? for update
  3110. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3111. 17:20:18.717 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update sys_remit_channel set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_valid=?, code=?, currency=?, en_icon=?, en_introduce=?, en_name=?, free=?, funding_time=?, icon=?, introduce=?, max_amount=?, min_amount=?, name=?, request_url=?, sub_index=?, transform_currency=?, type=?, valid=? where id=?
  3112. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  3113. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-09 07:22:58.0]
  3114. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3115. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3116. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:20:18 CST 2022]
  3117. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3118. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3119. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [0]
  3120. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [UNION_PAY_REMIT]
  3121. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [USD]
  3122. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [/icon/UnionPay.png]
  3123. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  3124. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  3125. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  3126. <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>
  3127. <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>
  3128. <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>
  3129. <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>
  3130. <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>
  3131. <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>
  3132. <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>]
  3133. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [China UnionPay]
  3134. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [0]
  3135. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1-72 hours]
  3136. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  3137. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  3138. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  3139. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  3140. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  3141. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  3142. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  3143. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  3144. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  3145. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  3146. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  3147. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [NUMERIC] - [7500]
  3148. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [NUMERIC] - [50]
  3149. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [中国银联]
  3150. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [/withdraw/apply/bank]
  3151. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [INTEGER] - [null]
  3152. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CNY]
  3153. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [BANK]
  3154. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [1]
  3155. 17:20:18.717 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [BIGINT] - [1]
  3156. 17:20:18.733 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update sys_remit_channel set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_valid=?, code=?, currency=?, en_icon=?, en_introduce=?, en_name=?, free=?, funding_time=?, icon=?, introduce=?, max_amount=?, min_amount=?, name=?, request_url=?, sub_index=?, transform_currency=?, type=?, valid=? where id=?
  3157. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  3158. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-09 07:22:58.0]
  3159. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3160. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3161. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:20:18 CST 2022]
  3162. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3163. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3164. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [1]
  3165. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3166. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [USD]
  3167. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [/icon/digital_currency.png]
  3168. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  3169. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  3170. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 25 EUR / GBP / USD.</span></p>
  3171. <p style="line-height: 2;"><span style="font-size: 10pt;">3. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  3172. <p style="line-height: 2;"><span style="font-size: 10pt;">4. The currency rate of digital currency depends on the digital currency market. You may exchange your own currencies according to the exchange rate policy of your own digital currency exchange.</span></p>
  3173. <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>
  3174. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that CWG shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  3175. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG Markets reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>]
  3176. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [Digital Currency]
  3177. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [0]
  3178. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1-72 hours]
  3179. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [/file//remit/channel/a2f900b5fa0f4e9f837f1794b583df4e.png]
  3180. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  3181. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到CWG交易帐户持有人的银行帐户。</span></p>
  3182. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是25 EUR/GBP/USD。</span></p>
  3183. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD / EUR / GBP 的汇率。</span></p>
  3184. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  3185. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  3186. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下CWG都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  3187. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>]
  3188. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [NUMERIC] - [100000]
  3189. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [NUMERIC] - [25]
  3190. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [数字货币]
  3191. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [/withdraw/apply/digital/currency]
  3192. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [INTEGER] - [null]
  3193. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [null]
  3194. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [DIGITAL_CURRENCY]
  3195. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [0]
  3196. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [BIGINT] - [2]
  3197. 17:20:18.733 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update sys_remit_channel set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_valid=?, code=?, currency=?, en_icon=?, en_introduce=?, en_name=?, free=?, funding_time=?, icon=?, introduce=?, max_amount=?, min_amount=?, name=?, request_url=?, sub_index=?, transform_currency=?, type=?, valid=? where id=?
  3198. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  3199. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-09 07:22:58.0]
  3200. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3201. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3202. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:20:18 CST 2022]
  3203. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3204. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3205. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [0]
  3206. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [UNION_PAY_TELEGRAPHIC_REMIT]
  3207. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [USD]
  3208. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [/icon/UnionPay.png]
  3209. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  3210. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  3211. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 25 EUR / GBP / USD.</span></p>
  3212. <p style="line-height: 2;"><span style="font-size: 10pt;">3. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  3213. <p style="line-height: 2;"><span style="font-size: 10pt;">4. The money received is in USD form, then only it will be converted into your local currency and the currency rate is based on the recipient bank.</span></p>
  3214. <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>
  3215. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that CWG shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  3216. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG Markets reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>]
  3217. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [Bank Transfer]
  3218. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [0]
  3219. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [48-72 hours]
  3220. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [/file//remit/channel/584b737059a94fbe9d960615180dc35d.png]
  3221. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  3222. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到CWG交易帐户持有人的银行帐户。</span></p>
  3223. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是25 EUR/GBP/USD。</span></p>
  3224. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD / EUR / GBP 的汇率。</span></p>
  3225. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  3226. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  3227. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下CWG都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  3228. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>]
  3229. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [NUMERIC] - [50000]
  3230. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [NUMERIC] - [25]
  3231. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [银行电汇]
  3232. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [/withdraw/apply/bank/telegraphic]
  3233. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [INTEGER] - [null]
  3234. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [USD]
  3235. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [BANK_TELEGRAPHIC]
  3236. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [0]
  3237. 17:20:18.733 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [BIGINT] - [3]
  3238. 17:20:18.999 [http-nio-8500-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_
  3239. 17:20:18.999 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3240. 17:20:18.999 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3241. 17:21:10.438 [http-nio-8500-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 (? , ?)
  3242. 17:21:10.438 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  3243. 17:21:10.438 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  3244. 17:21:24.235 [http-nio-8500-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657444884235,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"UPDATE_CONFIG_EMAIL_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2022-07-10 17:26:24","V_CODE_V":"328026","V_DATE_TIME_V":"2022-07-10 17:21:24"},"note":null,"sendDate":null,"subject":null,"templateName":"CONFIG_UPDATE_EMAIL_CODE_SEND","users":"mic_partnership@126.com"}
  3245. 17:22:01.173 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3246. 17:22:12.736 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  3247. 17:22:12.736 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3248. 17:23:01.022 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  3249. 17:23:01.037 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update sys_remittance_channel set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_valid=?, code=?, currency=?, en_icon=?, en_introduce=?, en_name=?, expire=?, free=?, funding_time=?, icon=?, introduce=?, max_amount=?, min_amount=?, name=?, property=?, request_url=?, sub_index=?, transform_currency=?, valid=? where id=?
  3250. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  3251. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-08-20 17:56:08.0]
  3252. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3253. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3254. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:23:01 CST 2022]
  3255. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3256. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3257. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [0]
  3258. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [UNION_PAY_TELEGRAPHIC]
  3259. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [USD]
  3260. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [/icon/safepay_icon.png]
  3261. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [<p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline;"><strong><span lang="EN-US" style="font-size: 13.5pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">Notes for deposit:</span></strong></p>
  3262. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><strong style="word-break: break-word !important;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">Our new UnionPay deposit system requires you to transfer to a personal bank account. The following actions will cause the deposit to fail. Please read it carefully before deposit:</span></strong></span></p>
  3263. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">1.The recipient bank account is different every time. Each transfer amount needs to be filled in the personal zone to get the new receiving bank information. Do not transfer directly with the previously used bank information, otherwise the transfer will be lost and cannot be refunded.</span></span></p>
  3264. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">2.</span></span><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">The transaction amount must be the same as the deposit amount. It is prohibited by using a third-party bank account to transfer the money and/or add any remarks when remittance. Otherwise, the transaction will be failed and unable to retrieve back.</span></p>
  3265. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">3.<span style="word-break: break-word !important;">Please send an email with a screenshot to&nbsp;<span style="color: #555555; font-family: verdana; font-size: 12px;">mic_partnership@126.com</span>&nbsp;if you did not receive your deposit after an hour.</span></span></p>]
  3266. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [China UnionPay]
  3267. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [600]
  3268. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [INTEGER] - [0]
  3269. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [1-24 hours]
  3270. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [/file//remittance/channel/bbfaf3b6f8894c97b4a8ea96d3ba66de.png]
  3271. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [<p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline;"><strong><span style="font-family: 宋体; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">入金注意事项</span></strong><strong><span lang="EN-US" style="font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">:</span></strong></p>
  3272. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><strong style="word-break: break-word !important;"><span style="font-size: 10.0pt; line-height: 200%; font-family: 宋体; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:</span></strong><strong><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">&nbsp;</span></strong></span></p>
  3273. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">1. </span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</span></span></p>
  3274. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline; word-break: break-word !important; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"><span style="word-break: break-word !important;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">2. &nbsp;</span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</span></span></p>
  3275. <p style="margin: 0cm; margin-bottom: .0001pt; line-height: 200%; background: white; vertical-align: baseline;"><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">3.</span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">如若入金没到账</span><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">, </span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">请在</span><span lang="EN-US" style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">24</span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">小时内使用注册邮箱发邮件到</span><span style="font-size: 10.0pt; line-height: 200%; font-family: 'Helvetica',sans-serif; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">&nbsp;<span lang="EN-US"><span style="color: #555555; font-family: verdana; font-size: 12px;">mic_partnership@126.com</span>&nbsp;</span></span><span style="font-size: 10.0pt; line-height: 200%; mso-ascii-font-family: Helvetica; mso-hansi-font-family: Helvetica; mso-bidi-font-family: Helvetica; color: #323232; border: none windowtext 1.0pt; mso-border-alt: none windowtext 0cm; padding: 0cm;">联系我们并提供支付凭证</span>。</p>]
  3276. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [NUMERIC] - [7500]
  3277. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [NUMERIC] - [100]
  3278. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [银联汇款]
  3279. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [[{"bankAddr":"银行地址 XXXXX","bankBranchName":"bankBranchName XXXXX","bankCardNum":"银行卡号XXXXX","bankCode":"银行code XXXXX","bankName":"银行名称 XXXXX","bankUname":"开户名 XXXXX","swiftCode":"swiftCode XXXXX"}]]
  3280. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [/telegraphic/pay]
  3281. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [null]
  3282. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [CNY]
  3283. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [1]
  3284. 17:23:01.037 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [BIGINT] - [8]
  3285. 17:23:01.287 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  3286. 17:23:01.287 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3287. 17:23:01.287 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3288. 17:23:06.350 [http-nio-8500-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 (? , ?)
  3289. 17:23:06.350 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  3290. 17:23:06.350 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  3291. 17:23:06.350 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  3292. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  3293. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  3294. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  3295. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  3296. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  3297. 17:23:06.350 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  3298. 17:23:06.694 [http-nio-8500-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=?
  3299. 17:23:06.694 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  3300. 17:23:06.740 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  3301. 17:23:06.756 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3302. 17:23:06.756 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3303. 17:23:07.084 [http-nio-8500-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_
  3304. 17:23:07.084 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3305. 17:23:07.084 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3306. 17:23:07.209 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  3307. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  3308. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  3309. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  3310. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  3311. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  3312. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  3313. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  3314. 17:23:07.209 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  3315. 17:23:07.490 [http-nio-8500-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 (? , ? , ? , ?)
  3316. 17:23:07.490 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  3317. 17:23:07.490 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  3318. 17:23:07.490 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  3319. 17:23:07.490 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  3320. 17:23:07.537 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3321. 17:23:07.537 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3322. 17:23:07.553 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3323. 17:23:07.819 [http-nio-8500-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=?
  3324. 17:23:07.819 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  3325. 17:23:07.928 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  3326. 17:23:08.240 [http-nio-8500-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 (? , ?)
  3327. 17:23:08.240 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  3328. 17:23:08.240 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  3329. 17:24:54.095 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3330. 17:24:54.095 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3331. 17:24:54.095 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3332. 17:24:54.095 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3333. 17:24:54.095 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3334. 17:24:54.095 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3335. 17:24:55.314 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3336. 17:24:55.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3337. 17:24:55.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3338. 17:24:55.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3339. 17:24:55.517 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3340. 17:24:55.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3341. 17:24:55.517 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3342. 17:24:58.627 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  3343. 17:24:58.642 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3344. 17:24:58.642 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  3345. 17:24:58.642 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3346. 17:24:58.814 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3347. 17:24:58.814 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3348. 17:24:58.814 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3349. 17:24:58.814 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  3350. 17:24:58.830 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  3351. 17:24:59.096 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3352. 17:25:49.758 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.id=? limit ? for update
  3353. 17:25:49.758 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3354. 17:25:49.758 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as col_0_0_ from custom_group customgrou0_ where customgrou0_.code=? limit ?
  3355. 17:25:49.758 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Mactor_MI7_BB]
  3356. 17:25:49.774 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  3357. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3358. 17:25:49.774 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  3359. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3360. 17:25:49.774 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update custom_group set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, com_point=?, commission_valid=?, currency=?, group_type=?, name=?, platform=?, pos=?, rebate_valid=?, type=? where id=?
  3361. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.116.212.127]
  3362. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-05 14:19:10.0]
  3363. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3364. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3365. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:25:49 CST 2022]
  3366. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3367. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3368. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [Mactor_MI7_BB]
  3369. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [0.0]
  3370. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [INTEGER] - [1]
  3371. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [USD]
  3372. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1]
  3373. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MI7]
  3374. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [MT4]
  3375. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [INTEGER] - [2]
  3376. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [INTEGER] - [1]
  3377. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1]
  3378. 17:25:49.774 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [2]
  3379. 17:25:49.977 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3380. 17:25:49.977 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3381. 17:25:49.977 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3382. 17:25:49.977 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3383. 17:25:49.977 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3384. 17:25:49.977 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3385. 17:25:54.868 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  3386. 17:25:54.868 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3387. 17:25:54.868 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3388. 17:25:54.868 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  3389. 17:25:54.868 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3390. 17:25:54.868 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3391. 17:25:54.868 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3392. 17:25:54.868 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_11_, accounttyp0_.add_ip as add_ip2_11_, accounttyp0_.add_time as add_time3_11_, accounttyp0_.add_user as add_user4_11_, accounttyp0_.modify_ip as modify_i5_11_, accounttyp0_.modify_time as modify_t6_11_, accounttyp0_.modify_user as modify_u7_11_, accounttyp0_.note as note8_11_, accounttyp0_.currency as currency9_11_, accounttyp0_.platform as platfor10_11_, accounttyp0_.type as type11_11_ from account_type_currency accounttyp0_
  3393. 17:25:54.868 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounthid0_.id as id1_6_, accounthid0_.add_ip as add_ip2_6_, accounthid0_.add_time as add_time3_6_, accounthid0_.add_user as add_user4_6_, accounthid0_.modify_ip as modify_i5_6_, accounthid0_.modify_time as modify_t6_6_, accounthid0_.modify_user as modify_u7_6_, accounthid0_.note as note8_6_, accounthid0_.hide as hide9_6_ from account_hide accounthid0_
  3394. 17:25:55.118 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3395. 17:26:05.837 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.id=? limit ? for update
  3396. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3397. 17:26:05.837 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as col_0_0_ from custom_group customgrou0_ where customgrou0_.code=? limit ?
  3398. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Mactor_MI3_BB]
  3399. 17:26:05.837 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id=?
  3400. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3401. 17:26:05.837 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id=?
  3402. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3403. 17:26:05.837 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - update custom_group set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, com_point=?, commission_valid=?, currency=?, group_type=?, name=?, platform=?, pos=?, rebate_valid=?, type=? where id=?
  3404. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.116.212.127]
  3405. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-05 14:19:10.0]
  3406. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  3407. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  3408. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sun Jul 10 17:26:05 CST 2022]
  3409. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3410. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3411. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [Mactor_MI3_BB]
  3412. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [20.0]
  3413. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [INTEGER] - [1]
  3414. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [USD]
  3415. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1]
  3416. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [MI3]
  3417. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [MT4]
  3418. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [INTEGER] - [2]
  3419. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [INTEGER] - [1]
  3420. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1]
  3421. 17:26:05.837 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [1]
  3422. 17:26:06.055 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3423. 17:26:06.055 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3424. 17:26:06.055 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3425. 17:26:06.055 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3426. 17:26:06.055 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3427. 17:26:06.055 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3428. 17:26:09.837 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3429. 17:26:10.008 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3430. 17:26:10.008 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3431. 17:26:10.008 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3432. 17:26:10.008 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3433. 17:26:10.008 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3434. 17:26:10.008 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3435. 17:26:16.696 [http-nio-8500-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 (? , ? , ? , ? , ? , ?)
  3436. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  3437. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  3438. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  3439. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  3440. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  3441. 17:26:16.696 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
  3442. 17:26:16.743 [http-nio-8500-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 (? , ?)
  3443. 17:26:16.743 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  3444. 17:26:16.743 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
  3445. 17:26:17.040 [http-nio-8500-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=?
  3446. 17:26:17.040 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
  3447. 17:26:17.149 [http-nio-8500-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_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
  3448. 17:26:17.149 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3449. 17:26:17.149 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3450. 17:26:17.384 [http-nio-8500-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_
  3451. 17:26:17.384 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
  3452. 17:26:17.384 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  3453. 17:26:17.540 [http-nio-8500-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 (? , ? , ? , ? , ? , ? , ? , ?)
  3454. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
  3455. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
  3456. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
  3457. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
  3458. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
  3459. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
  3460. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
  3461. 17:26:17.540 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
  3462. 17:26:17.790 [http-nio-8500-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 (? , ? , ? , ?)
  3463. 17:26:17.790 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  3464. 17:26:17.790 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  3465. 17:26:17.790 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
  3466. 17:26:17.790 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
  3467. 17:26:17.946 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3468. 17:26:17.946 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3469. 17:26:17.946 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3470. 17:26:18.212 [http-nio-8500-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=?
  3471. 17:26:18.212 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
  3472. 17:26:18.352 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
  3473. 17:26:18.587 [http-nio-8500-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 (? , ?)
  3474. 17:26:18.587 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
  3475. 17:26:18.587 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
  3476. 17:26:51.964 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.162.22.145","addTime":1657445211964,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"UPDATE_CONFIG_EMAIL_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2022-07-10 17:31:51","V_CODE_V":"088587","V_DATE_TIME_V":"2022-07-10 17:26:51"},"note":null,"sendDate":null,"subject":null,"templateName":"CONFIG_UPDATE_EMAIL_CODE_SEND","users":"mic_partnership@126.com"}
  3477. 17:27:01.198 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3478. 17:27:21.903 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  3479. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [admin]
  3480. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  3481. 17:27:21.903 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3482. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3483. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-21 11:00:25.0]
  3484. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3485. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3486. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3487. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3488. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3489. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3490. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3491. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  3492. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  3493. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3494. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3495. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3496. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [admin@crm.com]
  3497. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3498. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [-1]
  3499. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3500. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  3501. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3502. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [浙江省宁波市 电信]
  3503. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [125.115.40.144]
  3504. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 17:27:21 CST 2022]
  3505. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3506. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3507. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  3508. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3509. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  3510. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [0]
  3511. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3512. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  3513. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  3514. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  3515. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  3516. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [admin]
  3517. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3518. 17:27:21.903 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [1]
  3519. 17:27:44.309 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  3520. 17:27:44.340 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_0_, accounttyp0_.add_ip as add_ip2_10_0_, accounttyp0_.add_time as add_time3_10_0_, accounttyp0_.add_user as add_user4_10_0_, accounttyp0_.modify_ip as modify_i5_10_0_, accounttyp0_.modify_time as modify_t6_10_0_, accounttyp0_.modify_user as modify_u7_10_0_, accounttyp0_.note as note8_10_0_, accounttyp0_.cn_name as cn_name9_10_0_, accounttyp0_.code as code10_10_0_, accounttyp0_.en_name as en_name11_10_0_, accounttyp0_.name as name12_10_0_ from account_type accounttyp0_ where accounttyp0_.id=?
  3521. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3522. 17:27:44.356 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_0_, accounttyp0_.add_ip as add_ip2_10_0_, accounttyp0_.add_time as add_time3_10_0_, accounttyp0_.add_user as add_user4_10_0_, accounttyp0_.modify_ip as modify_i5_10_0_, accounttyp0_.modify_time as modify_t6_10_0_, accounttyp0_.modify_user as modify_u7_10_0_, accounttyp0_.note as note8_10_0_, accounttyp0_.cn_name as cn_name9_10_0_, accounttyp0_.code as code10_10_0_, accounttyp0_.en_name as en_name11_10_0_, accounttyp0_.name as name12_10_0_ from account_type accounttyp0_ where accounttyp0_.id=?
  3523. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3524. 17:27:44.356 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_0_, accounttyp0_.add_ip as add_ip2_10_0_, accounttyp0_.add_time as add_time3_10_0_, accounttyp0_.add_user as add_user4_10_0_, accounttyp0_.modify_ip as modify_i5_10_0_, accounttyp0_.modify_time as modify_t6_10_0_, accounttyp0_.modify_user as modify_u7_10_0_, accounttyp0_.note as note8_10_0_, accounttyp0_.cn_name as cn_name9_10_0_, accounttyp0_.code as code10_10_0_, accounttyp0_.en_name as en_name11_10_0_, accounttyp0_.name as name12_10_0_ from account_type accounttyp0_ where accounttyp0_.id=?
  3525. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  3526. 17:27:44.356 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_0_, accounttyp0_.add_ip as add_ip2_10_0_, accounttyp0_.add_time as add_time3_10_0_, accounttyp0_.add_user as add_user4_10_0_, accounttyp0_.modify_ip as modify_i5_10_0_, accounttyp0_.modify_time as modify_t6_10_0_, accounttyp0_.modify_user as modify_u7_10_0_, accounttyp0_.note as note8_10_0_, accounttyp0_.cn_name as cn_name9_10_0_, accounttyp0_.code as code10_10_0_, accounttyp0_.en_name as en_name11_10_0_, accounttyp0_.name as name12_10_0_ from account_type accounttyp0_ where accounttyp0_.id=?
  3527. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  3528. 17:27:44.356 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3529. 17:27:44.356 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3530. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3531. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3532. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3533. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3534. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3535. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3536. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3537. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [100]
  3538. 17:27:44.356 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [1]
  3539. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3540. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3541. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3542. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3543. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3544. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3545. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3546. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3547. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [100]
  3548. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3549. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3550. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3551. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3552. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3553. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3554. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3555. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3556. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3557. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [200]
  3558. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3559. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3560. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3561. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3562. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3563. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3564. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3565. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3566. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3567. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [400]
  3568. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3569. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3570. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3571. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3572. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3573. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3574. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3575. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3576. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3577. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [100]
  3578. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [3]
  3579. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3580. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3581. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3582. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3583. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3584. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3585. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3586. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3587. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [100]
  3588. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3589. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3590. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3591. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3592. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3593. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3594. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3595. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3596. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3597. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [200]
  3598. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3599. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3600. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3601. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3602. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3603. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3604. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3605. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3606. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3607. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [500]
  3608. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3609. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3610. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3611. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3612. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3613. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3614. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3615. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3616. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3617. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [1000]
  3618. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3619. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_leverage (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, leverage, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3620. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3621. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3622. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3623. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3624. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3625. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3626. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3627. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [INTEGER] - [400]
  3628. 17:27:44.372 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3629. 17:27:44.372 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3630. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3631. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3632. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3633. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3634. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3635. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3636. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3637. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3638. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [0.0]
  3639. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [1]
  3640. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3641. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3642. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3643. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3644. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3645. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3646. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3647. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3648. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [0.0]
  3649. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3650. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3651. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3652. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3653. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3654. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3655. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3656. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3657. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3658. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [10.0]
  3659. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3660. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3661. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3662. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3663. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3664. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3665. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3666. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3667. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3668. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [20.0]
  3669. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [2]
  3670. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3671. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3672. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3673. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3674. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3675. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3676. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3677. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3678. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [0.0]
  3679. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [3]
  3680. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3681. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3682. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3683. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3684. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3685. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3686. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3687. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3688. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [20.0]
  3689. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [3]
  3690. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3691. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3692. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3693. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3694. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3695. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3696. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3697. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3698. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [0.0]
  3699. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3700. 17:27:44.387 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3701. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3702. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3703. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3704. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3705. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3706. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3707. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3708. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [10.0]
  3709. 17:27:44.387 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3710. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - insert into account_type_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, point, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?)
  3711. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3712. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [null]
  3713. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3714. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3715. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3716. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3717. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3718. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [FLOAT] - [20.0]
  3719. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [5]
  3720. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3721. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [140]
  3722. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3723. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [141]
  3724. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3725. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [142]
  3726. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3727. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [143]
  3728. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3729. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [144]
  3730. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3731. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [145]
  3732. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3733. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [146]
  3734. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3735. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [147]
  3736. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3737. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [148]
  3738. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3739. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [149]
  3740. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3741. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [150]
  3742. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_leverage where id=?
  3743. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [151]
  3744. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3745. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [135]
  3746. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3747. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [136]
  3748. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3749. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [137]
  3750. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3751. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [138]
  3752. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3753. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [139]
  3754. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3755. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [140]
  3756. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3757. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [141]
  3758. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3759. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [142]
  3760. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3761. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [143]
  3762. 17:27:44.403 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - delete from account_type_point where id=?
  3763. 17:27:44.403 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [144]
  3764. 17:27:44.637 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
  3765. 17:27:44.637 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
  3766. 17:27:44.653 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
  3767. 17:27:48.535 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  3768. 17:27:48.551 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  3769. 17:32:01.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3770. 17:37:01.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3771. 17:42:01.265 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3772. 17:46:55.553 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3773. 17:46:55.553 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3774. 17:47:01.287 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3775. 17:52:01.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3776. 17:55:22.305 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3777. 17:55:22.305 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [admin]
  3778. 17:55:22.305 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  3779. 17:55:22.305 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3780. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  3781. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-05-21 11:00:25.0]
  3782. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3783. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3784. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3785. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3786. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3787. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3788. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3789. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  3790. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  3791. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3792. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3793. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3794. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [admin@crm.com]
  3795. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3796. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [-1]
  3797. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3798. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  3799. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3800. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [浙江省宁波市 电信]
  3801. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [125.115.40.144]
  3802. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Sun Jul 10 17:55:22 CST 2022]
  3803. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3804. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3805. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  3806. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3807. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [ff4e3e403a1048ffb6de383452053310]
  3808. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [0]
  3809. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3810. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  3811. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  3812. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  3813. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  3814. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [admin]
  3815. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3816. 17:55:22.321 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [1]
  3817. 17:56:01.374 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3818. 17:56:01.530 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  3819. 17:56:01.546 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3820. 17:56:01.546 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3821. 17:56:01.546 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ?)
  3822. 17:56:01.546 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  3823. 17:56:01.546 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  3824. 17:57:01.330 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3825. 18:02:01.351 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3826. 18:07:01.370 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3827. 18:12:01.384 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3828. 18:13:13.948 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  3829. 18:13:13.948 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  3830. 18:13:34.307 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
  3831. 18:13:34.307 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  3832. 18:17:01.403 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3833. 18:22:01.429 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3834. 18:27:01.453 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3835. 18:32:01.471 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3836. 18:37:01.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3837. 18:42:01.512 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3838. 18:46:55.728 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3839. 18:46:55.728 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3840. 18:47:01.525 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3841. 18:52:01.552 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3842. 18:57:01.577 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3843. 19:02:01.591 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3844. 19:07:01.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3845. 19:12:01.645 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3846. 19:17:01.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3847. 19:22:01.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3848. 19:27:01.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3849. 19:32:01.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3850. 19:37:01.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3851. 19:42:01.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3852. 19:46:55.895 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3853. 19:46:55.895 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3854. 19:47:01.785 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3855. 19:52:01.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3856. 19:57:01.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3857. 20:02:01.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3858. 20:07:01.880 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3859. 20:12:01.897 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3860. 20:17:01.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3861. 20:22:01.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3862. 20:27:01.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3863. 20:32:01.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3864. 20:37:02.004 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3865. 20:42:02.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3866. 20:46:56.067 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3867. 20:46:56.067 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3868. 20:47:02.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3869. 20:52:02.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3870. 20:57:02.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3871. 21:02:02.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3872. 21:07:02.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3873. 21:12:02.145 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3874. 21:17:02.173 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3875. 21:22:02.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3876. 21:27:02.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3877. 21:32:02.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3878. 21:37:02.236 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3879. 21:42:02.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3880. 21:46:56.241 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3881. 21:46:56.241 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3882. 21:47:02.272 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3883. 21:52:02.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3884. 21:57:02.313 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3885. 22:02:02.326 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3886. 22:07:02.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3887. 22:12:02.365 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3888. 22:17:02.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3889. 22:22:02.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3890. 22:27:02.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3891. 22:32:02.438 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3892. 22:37:02.458 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3893. 22:42:02.474 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3894. 22:46:56.416 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3895. 22:46:56.416 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3896. 22:47:02.494 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3897. 22:52:02.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3898. 22:57:02.537 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3899. 23:02:02.551 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3900. 23:07:02.565 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3901. 23:12:02.592 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3902. 23:17:02.612 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3903. 23:22:02.629 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3904. 23:27:02.646 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3905. 23:32:02.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3906. 23:37:02.685 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3907. 23:42:02.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3908. 23:46:56.575 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3909. 23:46:56.575 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sat Jul 09 00:00:00 CST 2022]
  3910. 23:47:02.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3911. 23:52:02.756 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3912. 23:57:02.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration