logback.2022-07-10.log 457 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. 00:03:21.650 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:08:21.677 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:13:21.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:18:21.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:23:21.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:28:21.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:33:21.804 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:38:21.828 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:43:21.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:48:21.871 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:53:21.891 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:58:21.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:03:21.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:08:21.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:13:21.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:18:22.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:23:22.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:28:22.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:33:22.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:38:22.084 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:43:22.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:48:22.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:53:22.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:58:22.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:03:22.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:08:22.194 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:13:22.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:18:22.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:23:22.258 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:28:22.273 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:33:22.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:38:22.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:43:22.323 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:48:22.340 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:53:22.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:58:22.383 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 03:03:22.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 03:08:22.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 03:13:22.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 03:18:22.488 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 03:23:22.514 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 03:28:22.541 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 03:33:22.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  44. 03:38:22.575 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  45. 03:43:22.589 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  46. 03:48:22.617 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  47. 03:53:22.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  48. 03:58:22.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  49. 04:03:22.675 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  50. 04:08:22.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  51. 04:13:22.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  52. 04:18:22.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  53. 04:23:22.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  54. 04:28:22.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  55. 04:33:22.815 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  56. 04:38:22.842 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  57. 04:43:22.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  58. 04:48:22.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  59. 04:53:22.906 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  60. 04:58:22.921 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  61. 05:03:22.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  62. 05:08:22.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  63. 05:13:22.987 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  64. 05:18:23.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  65. 05:23:23.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  66. 05:28:23.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  67. 05:33:23.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  68. 05:38:23.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  69. 05:43:23.121 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  70. 05:48:23.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  71. 05:53:23.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  72. 05:58:23.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  73. 06:03:23.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  74. 06:08:23.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  75. 06:13:23.248 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  76. 06:18:23.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  77. 06:23:23.285 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  78. 06:28:23.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  79. 06:33:23.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  80. 06:38:23.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  81. 06:43:23.376 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  82. 06:48:23.397 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  83. 06:53:23.422 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  84. 06:58:23.444 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  85. 07:03:23.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  86. 07:08:23.490 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  87. 07:13:23.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  88. 07:18:23.534 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  89. 07:23:23.549 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  90. 07:28:23.570 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  91. 07:33:23.585 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  92. 07:38:23.612 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  93. 07:43:23.633 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  94. 07:48:23.654 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  95. 07:53:23.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  96. 07:58:23.711 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  97. 08:03:23.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  98. 08:08:23.750 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  99. 08:13:23.770 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  100. 08:18:23.792 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  101. 08:23:23.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  102. 08:28:23.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  103. 08:33:23.853 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  104. 08:38:23.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  105. 08:43:23.907 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  106. 08:48:23.934 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  107. 08:53:23.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  108. 08:58:23.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  109. 09:03:24.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  110. 09:08:24.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  111. 09:13:24.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  112. 09:18:24.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  113. 09:23:24.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  114. 09:28:24.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  115. 09:33:24.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  116. 09:38:24.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  117. 09:43:24.188 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  118. 09:48:24.203 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  119. 09:53:24.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  120. 09:58:24.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  121. 10:03:24.265 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  122. 10:08:24.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  123. 10:13:24.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  124. 10:18:24.316 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  125. 10:23:24.335 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  126. 10:28:24.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  127. 10:33:24.386 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  128. 10:38:24.411 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  129. 10:43:24.435 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  130. 10:48:24.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  131. 10:53:24.486 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  132. 10:58:24.513 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  133. 11:03:24.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  134. 11:08:24.552 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  135. 11:13:24.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  136. 11:18:24.594 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  137. 11:23:24.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  138. 11:28:24.645 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  139. 11:33:24.671 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  140. 11:38:24.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  141. 11:43:24.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  142. 11:48:24.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  143. 11:53:24.775 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  144. 11:58:24.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  145. 12:03:24.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  146. 12:08:24.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  147. 12:13:24.861 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  148. 12:18:24.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  149. 12:23:24.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  150. 12:28:24.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  151. 12:33:24.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  152. 12:38:24.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  153. 12:43:24.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  154. 12:48:25.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  155. 12:53:25.046 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  156. 12:58:25.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  157. 13:03:25.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  158. 13:08:25.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  159. 13:13:25.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  160. 13:18:25.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  161. 13:23:25.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  162. 13:28:25.192 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  163. 13:33:25.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  164. 13:38:25.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  165. 13:43:25.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  166. 13:48:25.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  167. 13:53:25.319 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  168. 13:58:25.341 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  169. 14:03:25.366 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  170. 14:08:25.381 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  171. 14:13:25.403 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  172. 14:18:25.430 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  173. 14:23:25.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  174. 14:28:25.473 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  175. 14:33:25.500 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  176. 14:38:25.521 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  177. 14:42:27.775 [http-nio-9000-exec-5] 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=?
  178. 14:42:27.775 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  179. 14:42:30.354 [http-nio-9000-exec-1] 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=?
  180. 14:42:30.354 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  181. 14:42:31.322 [http-nio-9000-exec-6] 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=?
  182. 14:42:31.322 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  183. 14:42:32.244 [http-nio-9000-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=?
  184. 14:42:32.244 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  185. 14:43:25.545 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  186. 14:48:15.228 [http-nio-9000-exec-5] 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=?
  187. 14:48:15.228 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  188. 14:48:25.571 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  189. 14:49:04.481 [http-nio-9000-exec-6] 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=?
  190. 14:49:04.497 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  191. 14:49:05.762 [http-nio-9000-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=?
  192. 14:49:05.762 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  193. 14:49:09.576 [http-nio-9000-exec-8] 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=?
  194. 14:49:09.576 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  195. 14:50:06.765 [http-nio-9000-exec-5] 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=?
  196. 14:50:06.765 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  197. 14:53:25.587 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  198. 14:58:25.614 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  199. 15:03:25.643 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  200. 15:08:25.666 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  201. 15:13:25.688 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  202. 15:18:25.713 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  203. 15:23:25.741 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  204. 15:28:25.767 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  205. 15:33:25.781 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  206. 15:35:39.976 [http-nio-9000-exec-2] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@55708aff: startup date [Sun Jul 10 15:35:39 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  207. 15:35:40.055 [http-nio-9000-exec-2] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  208. 15:35:40.055 [http-nio-9000-exec-2] INFO c.n.config.ChainedDynamicProperty - Flipping property: ACTIVITY-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  209. 15:35:40.055 [http-nio-9000-exec-2] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook installed for: NFLoadBalancer-PingTimer-ACTIVITY-SERVICE
  210. 15:35:40.055 [http-nio-9000-exec-2] INFO c.n.loadbalancer.BaseLoadBalancer - Client: ACTIVITY-SERVICE instantiated a LoadBalancer: DynamicServerListLoadBalancer:{NFLoadBalancer:name=ACTIVITY-SERVICE,current list of Servers=[],Load balancer stats=Zone stats: {},Server stats: []}ServerList:null
  211. 15:35:40.055 [http-nio-9000-exec-2] INFO c.n.l.DynamicServerListLoadBalancer - Using serverListUpdater PollingServerListUpdater
  212. 15:35:40.070 [http-nio-9000-exec-2] INFO c.n.config.ChainedDynamicProperty - Flipping property: ACTIVITY-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  213. 15:35:40.070 [http-nio-9000-exec-2] INFO c.n.l.DynamicServerListLoadBalancer - DynamicServerListLoadBalancer for client ACTIVITY-SERVICE initialized: DynamicServerListLoadBalancer:{NFLoadBalancer:name=ACTIVITY-SERVICE,current list of Servers=[103.148.58.88:8104],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;]
  214. },Server stats: [[Server:103.148.58.88:8104; 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]
  215. ]}ServerList:org.springframework.cloud.netflix.ribbon.eureka.DomainExtractingServerList@51f2a284
  216. 15:35:41.070 [PollingServerListUpdater-0] INFO c.n.config.ChainedDynamicProperty - Flipping property: ACTIVITY-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  217. 15:38:25.807 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  218. 15:38:46.136 [http-nio-9000-exec-7] 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=?
  219. 15:38:46.136 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  220. 15:43:25.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  221. 15:46:32.445 [http-nio-9000-exec-7] 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=?
  222. 15:46:32.445 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  223. 15:48:25.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  224. 15:53:25.878 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  225. 15:58:25.897 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  226. 16:03:25.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  227. 16:08:25.939 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  228. 16:11:51.556 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  229. 16:11:51.556 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  230. 16:11:51.556 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  231. 16:11:51.556 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  232. 16:12:50.932 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  233. 16:12:50.932 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  234. 16:12:50.932 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  235. 16:12:50.948 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  236. 16:12:55.463 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  237. 16:12:55.463 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  238. 16:12:55.479 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.c_id=? or userinfota0_.custom_id=?
  239. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [500005]
  240. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [5]
  241. 16:12:55.479 [http-nio-9000-exec-7] 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=?
  242. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  243. 16:12:55.479 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select agentlevel0_.id as id1_20_, agentlevel0_.add_ip as add_ip2_20_, agentlevel0_.add_time as add_time3_20_, agentlevel0_.add_user as add_user4_20_, agentlevel0_.modify_ip as modify_i5_20_, agentlevel0_.modify_time as modify_t6_20_, agentlevel0_.modify_user as modify_u7_20_, agentlevel0_.note as note8_20_, agentlevel0_.en_name as en_name9_20_, agentlevel0_.level_code as level_c10_20_, agentlevel0_.level_num as level_n11_20_, agentlevel0_.name as name12_20_, agentlevel0_.pid as pid13_20_, agentlevel0_.sub_id as sub_id14_20_, agentlevel0_.valid as valid15_20_, agentlevel0_.valid_sub as valid_s16_20_ from agent_level agentlevel0_ where agentlevel0_.level_num=? limit ?
  244. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  245. 16:12:55.479 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.main=? limit ?
  246. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  247. 16:12:55.479 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(agentapply0_.id) as col_0_0_ from agent_apply agentapply0_ where agentapply0_.custom_id=? and agentapply0_.status=?
  248. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  249. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  250. 16:12:55.479 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - insert into agent_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, agent_level, c_id, custom_id, group_id, pid, point_id, sales_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  251. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  252. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:12:55 CST 2022]
  253. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  254. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  255. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  256. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  257. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  258. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  259. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  260. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  261. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  262. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1000]
  263. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500005]
  264. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [5]
  265. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  266. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20091]
  267. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [2]
  268. 16:12:55.479 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  269. 16:12:58.182 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  270. 16:12:58.182 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  271. 16:12:58.182 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  272. 16:12:58.182 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  273. 16:13:22.339 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_0_, agentapply0_.add_ip as add_ip2_14_0_, agentapply0_.add_time as add_time3_14_0_, agentapply0_.add_user as add_user4_14_0_, agentapply0_.modify_ip as modify_i5_14_0_, agentapply0_.modify_time as modify_t6_14_0_, agentapply0_.modify_user as modify_u7_14_0_, agentapply0_.note as note8_14_0_, agentapply0_.approve_desc as approve_9_14_0_, agentapply0_.approve_time as approve10_14_0_, agentapply0_.approve_user as approve11_14_0_, agentapply0_.status as status12_14_0_, agentapply0_.agent_level as agent_l13_14_0_, agentapply0_.c_id as c_id14_14_0_, agentapply0_.custom_id as custom_15_14_0_, agentapply0_.group_id as group_i16_14_0_, agentapply0_.pid as pid17_14_0_, agentapply0_.point_id as point_i18_14_0_, agentapply0_.sales_id as sales_i19_14_0_ from agent_apply agentapply0_ where agentapply0_.id=?
  274. 16:13:22.339 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  275. 16:13:22.339 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  276. 16:13:22.339 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  277. 16:13:22.339 [http-nio-9000-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=?
  278. 16:13:22.339 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  279. 16:13:22.339 [http-nio-9000-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=?
  280. 16:13:22.339 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  281. 16:13:22.339 [http-nio-9000-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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  282. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  283. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:13:22 CST 2022]
  284. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  285. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  286. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  287. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  288. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  289. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [1000]
  290. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  291. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  292. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500005]
  293. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  294. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  295. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [5]
  296. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [985917589@qq.com]
  297. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  298. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  299. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  300. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [IB7500005]
  301. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  302. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  303. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  304. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  305. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  306. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  307. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [单 张]
  308. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010101]
  309. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [null]
  310. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  311. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [2]
  312. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [-1]
  313. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20091]
  314. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01010102]
  315. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  316. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [985917589@qq.com]
  317. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  318. 16:13:22.355 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  319. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  320. 16:13:22.355 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - insert into agent_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, classic_cfd, classic_fx, com_point_one, com_point_two, instant_fx, instant_index, instant_metal, percent, type, valid_time, vip_cfd, vip_fx) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  321. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  322. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:13:22 CST 2022]
  323. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  324. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  325. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  326. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  327. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  328. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20094]
  329. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [14.0]
  330. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [7.0]
  331. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [10.0]
  332. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [20.0]
  333. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [FLOAT] - [15.0]
  334. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [FLOAT] - [6.0]
  335. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [25.0]
  336. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [0.0]
  337. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  338. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [TIMESTAMP] - [Sun Jul 10 16:13:22 CST 2022]
  339. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [FLOAT] - [10.0]
  340. 16:13:22.355 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [FLOAT] - [5.0]
  341. 16:13:22.371 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - update agent_apply set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, agent_level=?, c_id=?, custom_id=?, group_id=?, pid=?, point_id=?, sales_id=? where id=?
  342. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  343. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 16:12:55.0]
  344. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  345. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  346. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  347. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  348. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  349. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  350. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 10 16:13:22 CST 2022]
  351. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  352. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  353. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1000]
  354. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500005]
  355. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [5]
  356. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  357. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20091]
  358. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [2]
  359. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  360. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [3]
  361. 16:13:22.371 [http-nio-9000-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=?
  362. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  363. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:20:03.0]
  364. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  365. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  366. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-10 15:28:58.0]
  367. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  368. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  369. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [105]
  370. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-10 15:28:58.0]
  371. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  372. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  373. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [北京颐和园]
  374. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  375. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  376. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-10 15:25:52.0]
  377. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  378. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2019-07-01 00:00:00.0]
  379. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500005]
  380. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  381. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  382. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [石景山]
  383. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  384. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  385. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  386. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  387. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [985917589@qq.com]
  388. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [单]
  389. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  390. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  391. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  392. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [20094]
  393. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  394. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [45612131321213210]
  395. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  396. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国德克萨斯]
  397. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [16.162.22.145]
  398. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  399. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 15:20:04.0]
  400. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  401. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [san Zhang]
  402. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  403. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [efe428fcb094f2f84e71fa0d6c36bc0c]
  404. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15888888888]
  405. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [北京]
  406. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  407. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  408. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [410000]
  409. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [5]
  410. 16:13:22.371 [http-nio-9000-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 ?
  411. 16:13:22.371 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  412. 16:13:22.386 [http-nio-9000-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1657440802386,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"AGENT_REGISTER","imageFilesMap":null,"map":{"V_AGENT_ID_V":"20094","V_IB_NO_V":"IB7500005","V_DATE_TIME_V":"2022-07-10 16:13:22","V_NAME_V":"单 张"},"note":null,"sendDate":null,"subject":null,"templateName":"AGENT_REGISTER_COMPLETE_SEND_CN","users":"985917589@qq.com"}
  413. 16:13:25.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  414. 16:13:28.699 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  415. 16:13:28.699 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  416. 16:13:30.074 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  417. 16:13:30.074 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  418. 16:13:30.074 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  419. 16:13:30.074 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  420. 16:13:30.074 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  421. 16:13:30.074 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  422. 16:18:25.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  423. 16:19:26.208 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  424. 16:19:26.208 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  425. 16:19:26.708 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  426. 16:19:26.708 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  427. 16:19:26.708 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  428. 16:19:26.708 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  429. 16:19:26.724 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  430. 16:19:26.724 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  431. 16:23:26.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  432. 16:25:07.442 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  433. 16:25:07.442 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  434. 16:25:08.207 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  435. 16:25:08.207 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  436. 16:25:08.207 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  437. 16:25:08.207 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  438. 16:25:08.207 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  439. 16:25:08.207 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  440. 16:25:25.614 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  441. 16:25:25.614 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  442. 16:25:26.145 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  443. 16:25:26.145 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  444. 16:25:26.145 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  445. 16:25:26.145 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  446. 16:25:26.145 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  447. 16:25:26.145 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  448. 16:26:29.569 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  449. 16:26:29.569 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  450. 16:26:29.569 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  451. 16:26:29.569 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  452. 16:26:33.679 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  453. 16:26:33.679 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  454. 16:26:34.304 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  455. 16:26:34.304 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  456. 16:26:34.304 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  457. 16:26:34.304 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  458. 16:26:34.304 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  459. 16:26:34.304 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  460. 16:26:37.226 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  461. 16:26:37.226 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  462. 16:26:41.757 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  463. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  464. 16:26:41.773 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.c_id=? or userinfota0_.custom_id=?
  465. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [500006]
  466. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [6]
  467. 16:26:41.773 [http-nio-9000-exec-5] 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=?
  468. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  469. 16:26:41.773 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentlevel0_.id as id1_20_0_, agentlevel0_.add_ip as add_ip2_20_0_, agentlevel0_.add_time as add_time3_20_0_, agentlevel0_.add_user as add_user4_20_0_, agentlevel0_.modify_ip as modify_i5_20_0_, agentlevel0_.modify_time as modify_t6_20_0_, agentlevel0_.modify_user as modify_u7_20_0_, agentlevel0_.note as note8_20_0_, agentlevel0_.en_name as en_name9_20_0_, agentlevel0_.level_code as level_c10_20_0_, agentlevel0_.level_num as level_n11_20_0_, agentlevel0_.name as name12_20_0_, agentlevel0_.pid as pid13_20_0_, agentlevel0_.sub_id as sub_id14_20_0_, agentlevel0_.valid as valid15_20_0_, agentlevel0_.valid_sub as valid_s16_20_0_ from agent_level agentlevel0_ where agentlevel0_.id=?
  470. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  471. 16:26:41.773 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(agentapply0_.id) as col_0_0_ from agent_apply agentapply0_ where agentapply0_.custom_id=? and agentapply0_.status=?
  472. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  473. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  474. 16:26:41.773 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - insert into agent_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, agent_level, c_id, custom_id, group_id, pid, point_id, sales_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  475. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  476. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:26:41 CST 2022]
  477. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [6]
  478. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  479. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  480. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  481. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  482. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  483. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  484. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  485. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  486. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1001]
  487. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500006]
  488. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [6]
  489. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  490. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20094]
  491. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [null]
  492. 16:26:41.773 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  493. 16:26:57.929 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_0_, agentapply0_.add_ip as add_ip2_14_0_, agentapply0_.add_time as add_time3_14_0_, agentapply0_.add_user as add_user4_14_0_, agentapply0_.modify_ip as modify_i5_14_0_, agentapply0_.modify_time as modify_t6_14_0_, agentapply0_.modify_user as modify_u7_14_0_, agentapply0_.note as note8_14_0_, agentapply0_.approve_desc as approve_9_14_0_, agentapply0_.approve_time as approve10_14_0_, agentapply0_.approve_user as approve11_14_0_, agentapply0_.status as status12_14_0_, agentapply0_.agent_level as agent_l13_14_0_, agentapply0_.c_id as c_id14_14_0_, agentapply0_.custom_id as custom_15_14_0_, agentapply0_.group_id as group_i16_14_0_, agentapply0_.pid as pid17_14_0_, agentapply0_.point_id as point_i18_14_0_, agentapply0_.sales_id as sales_i19_14_0_ from agent_apply agentapply0_ where agentapply0_.id=?
  494. 16:26:57.929 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [4]
  495. 16:26:57.929 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  496. 16:26:57.929 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  497. 16:26:57.929 [http-nio-9000-exec-5] 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=?
  498. 16:26:57.929 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  499. 16:26:57.929 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.pid=?
  500. 16:26:57.929 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  501. 16:26:57.929 [http-nio-9000-exec-5] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  502. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  503. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:26:57 CST 2022]
  504. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  505. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  506. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  507. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  508. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  509. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [1001]
  510. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  511. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  512. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500006]
  513. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  514. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  515. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [6]
  516. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  517. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  518. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  519. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  520. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [IB7500006]
  521. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  522. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  523. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  524. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  525. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  526. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  527. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [开 袁]
  528. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01010102]
  529. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [null]
  530. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20094]
  531. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  532. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [-1]
  533. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20091]
  534. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101010201]
  535. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  536. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  537. 16:26:57.945 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  538. 16:26:57.960 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - update agent_apply set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, agent_level=?, c_id=?, custom_id=?, group_id=?, pid=?, point_id=?, sales_id=? where id=?
  539. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  540. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 16:26:42.0]
  541. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [6]
  542. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  543. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  544. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  545. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  546. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  547. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 10 16:26:57 CST 2022]
  548. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  549. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  550. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1001]
  551. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500006]
  552. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [6]
  553. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  554. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20094]
  555. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [null]
  556. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  557. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [4]
  558. 16:26:57.960 [http-nio-9000-exec-5] 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=?
  559. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.199.244]
  560. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 16:20:58.0]
  561. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [6]
  562. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.199.244]
  563. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-10 16:26:24.0]
  564. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [6]
  565. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  566. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  567. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-10 16:23:28.0]
  568. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  569. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  570. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [大幅度@#京东价个]
  571. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20094]
  572. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  573. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-10 16:22:58.0]
  574. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  575. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2022-07-05 00:00:00.0]
  576. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500006]
  577. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  578. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  579. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [怒江]
  580. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  581. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  582. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  583. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  584. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [287114768@qq.com]
  585. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [开]
  586. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  587. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  588. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  589. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [20095]
  590. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  591. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [37884947789988333]
  592. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  593. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
  594. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [106.47.199.244]
  595. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [袁]
  596. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 16:26:24.0]
  597. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  598. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Kai Yuan]
  599. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [AF]
  600. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6ea22f9ab0a764caf6752f1fefd11ec8]
  601. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [83938474]
  602. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
  603. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  604. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  605. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [9099833]
  606. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [6]
  607. 16:26:57.960 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  608. 16:26:57.960 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  609. 16:26:57.976 [http-nio-9000-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1657441617976,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"AGENT_REGISTER","imageFilesMap":null,"map":{"V_AGENT_ID_V":"20095","V_IB_NO_V":"IB7500006","V_DATE_TIME_V":"2022-07-10 16:26:57","V_NAME_V":"开 袁"},"note":null,"sendDate":null,"subject":null,"templateName":"AGENT_REGISTER_COMPLETE_SEND_CN","users":"287114768@qq.com"}
  610. 16:27:08.962 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  611. 16:27:08.962 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  612. 16:27:08.962 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  613. 16:27:08.962 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  614. 16:27:08.962 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  615. 16:27:08.962 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  616. 16:27:09.743 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  617. 16:27:09.743 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  618. 16:27:10.712 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  619. 16:27:10.727 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  620. 16:27:10.727 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  621. 16:27:10.727 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  622. 16:27:10.727 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  623. 16:27:10.727 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  624. 16:27:10.774 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  625. 16:27:10.774 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  626. 16:27:54.603 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  627. 16:27:54.603 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  628. 16:27:55.088 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  629. 16:27:55.088 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  630. 16:27:55.088 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  631. 16:27:55.088 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  632. 16:27:55.088 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  633. 16:27:55.088 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  634. 16:28:01.666 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  635. 16:28:01.681 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  636. 16:28:08.822 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  637. 16:28:08.822 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  638. 16:28:26.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  639. 16:30:47.390 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  640. 16:30:47.390 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [袁开]
  641. 16:30:47.406 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  642. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  643. 16:30:47.406 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - insert into sys_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, classic_cfd, classic_fx, com_point_one, com_point_two, en_name, instant_fx, instant_index, instant_metal, main, name, type, vip_cfd, vip_fx) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  644. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  645. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:30:47 CST 2022]
  646. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  647. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  648. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  649. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  650. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  651. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20094]
  652. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [0.0]
  653. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  654. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [0.0]
  655. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [10.0]
  656. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [null]
  657. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [FLOAT] - [0.0]
  658. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [0.0]
  659. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [0.0]
  660. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [null]
  661. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [袁开]
  662. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  663. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [FLOAT] - [0.0]
  664. 16:30:47.406 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [FLOAT] - [0.0]
  665. 16:30:51.765 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  666. 16:30:51.765 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  667. 16:31:04.781 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  668. 16:31:04.781 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  669. 16:31:04.781 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  670. 16:31:04.781 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  671. 16:31:04.796 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.main=? limit ?
  672. 16:31:04.796 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  673. 16:31:04.796 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.agent_id=?
  674. 16:31:04.796 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  675. 16:31:32.047 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  676. 16:31:32.047 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  677. 16:31:32.047 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  678. 16:31:32.047 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  679. 16:31:32.062 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.main=? limit ?
  680. 16:31:32.062 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  681. 16:31:32.062 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.agent_id=?
  682. 16:31:32.062 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  683. 16:31:50.391 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  684. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  685. 16:31:50.406 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.id=? limit ?
  686. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [361]
  687. 16:31:50.406 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - insert into agent_point_record (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, new_classic_cfd, new_classic_fx, new_com_point_one, new_com_point_two, new_instant_fx, new_instant_index, new_instant_metal, new_percent, new_vip_cfd, new_vip_fx, old_classic_cfd, old_classic_fx, old_com_point_one, old_com_point_two, old_instant_fx, old_instant_index, old_instant_metal, old_percent, old_vip_cfd, old_vip_fx, point_id, status, type, valid_time) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  688. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  689. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 16:31:50 CST 2022]
  690. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  691. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  692. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  693. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  694. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  695. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20095]
  696. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [0.0]
  697. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  698. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [0.0]
  699. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [10.0]
  700. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [FLOAT] - [0.0]
  701. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [FLOAT] - [0.0]
  702. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [0.0]
  703. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  704. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [FLOAT] - [0.0]
  705. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [FLOAT] - [0.0]
  706. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [FLOAT] - [0.0]
  707. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [FLOAT] - [0.0]
  708. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [FLOAT] - [0.0]
  709. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  710. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [FLOAT] - [0.0]
  711. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [FLOAT] - [0.0]
  712. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [FLOAT] - [0.0]
  713. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [FLOAT] - [null]
  714. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [FLOAT] - [0.0]
  715. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [FLOAT] - [0.0]
  716. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [361]
  717. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [1]
  718. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [INTEGER] - [1]
  719. 16:31:50.406 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [TIMESTAMP] - [null]
  720. 16:32:12.438 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  721. 16:32:12.438 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  722. 16:32:12.438 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  723. 16:32:12.438 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  724. 16:32:12.438 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.main=? limit ?
  725. 16:32:12.438 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  726. 16:32:12.438 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.agent_id=?
  727. 16:32:12.438 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  728. 16:32:42.220 [http-nio-9000-exec-5] 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=?
  729. 16:32:42.220 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  730. 16:32:54.876 [http-nio-9000-exec-10] 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=?
  731. 16:32:54.876 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  732. 16:33:25.064 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  733. 16:33:25.064 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  734. 16:33:25.611 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  735. 16:33:25.611 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  736. 16:33:25.611 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  737. 16:33:25.611 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  738. 16:33:25.611 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  739. 16:33:25.611 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  740. 16:33:26.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  741. 16:34:57.097 [http-nio-9000-exec-7] 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=?
  742. 16:34:57.097 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  743. 16:38:26.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  744. 16:43:26.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  745. 16:48:26.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  746. 16:50:03.470 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.id=?
  747. 16:50:03.470 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20096]
  748. 16:50:03.470 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  749. 16:50:03.470 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20096]
  750. 16:53:26.153 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  751. 16:55:33.579 [http-nio-9000-exec-9] 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=?
  752. 16:55:33.579 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  753. 16:55:36.314 [http-nio-9000-exec-6] 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=?
  754. 16:55:36.314 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  755. 16:56:09.053 [http-nio-9000-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=?
  756. 16:56:09.053 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  757. 16:56:09.053 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  758. 16:56:09.053 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  759. 16:56:09.068 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=?
  760. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  761. 16:56:09.068 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  762. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  763. 16:56:09.068 [http-nio-9000-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=?
  764. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [16.162.22.145]
  765. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 15:20:03.0]
  766. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [5]
  767. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [16.162.22.145]
  768. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-10 15:28:58.0]
  769. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  770. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  771. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [105]
  772. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-10 15:28:58.0]
  773. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  774. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  775. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [北京颐和园]
  776. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  777. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  778. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-10 15:25:52.0]
  779. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  780. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2019-07-01 00:00:00.0]
  781. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500005]
  782. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  783. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  784. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [石景山]
  785. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  786. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  787. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  788. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  789. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [985917589@qq.com]
  790. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [单]
  791. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  792. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  793. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  794. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  795. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  796. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [45612131321213210]
  797. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  798. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国德克萨斯]
  799. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [16.162.22.145]
  800. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  801. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 15:20:04.0]
  802. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  803. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [san Zhang]
  804. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  805. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [efe428fcb094f2f84e71fa0d6c36bc0c]
  806. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15888888888]
  807. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [北京]
  808. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  809. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  810. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [410000]
  811. 16:56:09.068 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [5]
  812. 16:56:09.084 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - delete from user_info where id=?
  813. 16:56:09.084 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20094]
  814. 16:56:09.084 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - delete from agent_point where id=?
  815. 16:56:09.084 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  816. 16:56:09.084 [http-nio-9000-exec-4] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2c1a0e1a: startup date [Sun Jul 10 16:56:09 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  817. 16:56:09.115 [http-nio-9000-exec-4] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  818. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.config.ChainedDynamicProperty - Flipping property: TASK-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  819. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook installed for: NFLoadBalancer-PingTimer-TASK-SERVICE
  820. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.loadbalancer.BaseLoadBalancer - Client: TASK-SERVICE instantiated a LoadBalancer: DynamicServerListLoadBalancer:{NFLoadBalancer:name=TASK-SERVICE,current list of Servers=[],Load balancer stats=Zone stats: {},Server stats: []}ServerList:null
  821. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.l.DynamicServerListLoadBalancer - Using serverListUpdater PollingServerListUpdater
  822. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.config.ChainedDynamicProperty - Flipping property: TASK-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  823. 16:56:09.131 [http-nio-9000-exec-4] INFO c.n.l.DynamicServerListLoadBalancer - DynamicServerListLoadBalancer for client TASK-SERVICE initialized: DynamicServerListLoadBalancer:{NFLoadBalancer:name=TASK-SERVICE,current list of Servers=[103.148.58.88:9100],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;]
  824. },Server stats: [[Server:103.148.58.88:9100; 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]
  825. ]}ServerList:org.springframework.cloud.netflix.ribbon.eureka.DomainExtractingServerList@41760697
  826. 16:56:10.147 [PollingServerListUpdater-0] INFO c.n.config.ChainedDynamicProperty - Flipping property: TASK-SERVICE.ribbon.ActiveConnectionsLimit to use NEXT property: niws.loadbalancer.availabilityFilteringRule.activeConnectionsLimit = 2147483647
  827. 16:56:24.397 [http-nio-9000-exec-1] 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=?
  828. 16:56:24.397 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  829. 16:56:24.397 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  830. 16:56:24.397 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  831. 16:56:24.397 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=?
  832. 16:56:24.397 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  833. 16:56:24.397 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  834. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [4]
  835. 16:56:24.412 [http-nio-9000-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=?
  836. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [45.58.53.121]
  837. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-06 16:42:11.0]
  838. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [4]
  839. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [45.58.53.121]
  840. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-06 17:12:40.0]
  841. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [4]
  842. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  843. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  844. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  845. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  846. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  847. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  848. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20092]
  849. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  850. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  851. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [47]
  852. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  853. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500004]
  854. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  855. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  856. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  857. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  858. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [NO]
  859. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [Norway]
  860. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [挪威]
  861. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ensjoozqscisliyesx@kvhrw.com]
  862. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  863. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  864. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  865. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  866. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  867. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  868. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  869. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  870. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国华盛顿西雅图]
  871. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [45.58.53.121]
  872. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  873. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-06 17:12:40.0]
  874. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  875. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  876. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  877. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [0abb0f970d67501c94c6d4ff09f71a30]
  878. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [23123123123]
  879. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  880. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  881. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  882. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  883. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [4]
  884. 16:56:24.412 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - delete from user_info where id=?
  885. 16:56:24.412 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20093]
  886. 16:56:30.522 [http-nio-9000-exec-5] 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=?
  887. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  888. 16:56:30.537 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  889. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  890. 16:56:30.537 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=?
  891. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  892. 16:56:30.537 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  893. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  894. 16:56:30.537 [http-nio-9000-exec-5] 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=?
  895. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [45.58.53.121]
  896. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-06 15:21:25.0]
  897. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  898. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [45.58.53.121]
  899. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-06 16:35:01.0]
  900. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [3]
  901. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  902. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  903. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-06 15:23:11.0]
  904. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  905. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  906. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [123123@#123123]
  907. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  908. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  909. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-06 15:22:40.0]
  910. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  911. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2022-07-21 00:00:00.0]
  912. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500003]
  913. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  914. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  915. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [丽江]
  916. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  917. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  918. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  919. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  920. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [nai78411@uzxia.com]
  921. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [123]
  922. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  923. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  924. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  925. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  926. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  927. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [123123]
  928. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  929. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国华盛顿西雅图]
  930. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [45.58.53.121]
  931. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [123]
  932. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-06 16:35:01.0]
  933. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  934. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [123 123]
  935. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [AL]
  936. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [0abb0f970d67501c94c6d4ff09f71a30]
  937. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1312312334342]
  938. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
  939. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  940. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  941. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [123123]
  942. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [3]
  943. 16:56:30.537 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - delete from user_info where id=?
  944. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20092]
  945. 16:56:30.537 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - delete from agent_point where id=?
  946. 16:56:30.537 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  947. 16:57:27.619 [http-nio-9000-exec-1] 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=?
  948. 16:57:27.619 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20090]
  949. 16:57:32.776 [http-nio-9000-exec-6] 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=?
  950. 16:57:32.776 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  951. 16:58:26.175 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  952. 17:03:26.195 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  953. 17:08:26.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  954. 17:12:59.930 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  955. 17:12:59.930 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  956. 17:12:59.930 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  957. 17:12:59.930 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  958. 17:13:00.133 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  959. 17:13:00.133 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  960. 17:13:00.133 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  961. 17:13:00.133 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  962. 17:13:26.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  963. 17:18:26.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  964. 17:23:26.256 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  965. 17:24:23.279 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  966. 17:24:23.279 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  967. 17:24:23.279 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  968. 17:24:23.279 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  969. 17:28:26.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  970. 17:33:05.929 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  971. 17:33:05.929 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  972. 17:33:05.929 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  973. 17:33:05.929 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  974. 17:33:26.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  975. 17:36:39.168 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  976. 17:36:39.168 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  977. 17:36:39.168 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  978. 17:36:39.168 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  979. 17:38:26.318 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  980. 17:40:44.285 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  981. 17:40:44.285 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  982. 17:40:44.285 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  983. 17:40:44.285 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  984. 17:43:26.332 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  985. 17:47:06.272 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  986. 17:47:06.272 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  987. 17:47:06.272 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  988. 17:47:06.272 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  989. 17:47:08.444 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  990. 17:47:08.444 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  991. 17:47:08.444 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  992. 17:47:08.444 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  993. 17:47:09.647 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  994. 17:47:09.647 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  995. 17:47:09.647 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  996. 17:47:09.647 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  997. 17:48:00.195 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  998. 17:48:00.195 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  999. 17:48:00.195 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1000. 17:48:00.195 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1001. 17:48:10.946 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  1002. 17:48:10.946 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1003. 17:48:10.946 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.c_id=? or userinfota0_.custom_id=?
  1004. 17:48:10.946 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [500003]
  1005. 17:48:10.946 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [3]
  1006. 17:48:10.946 [http-nio-9000-exec-2] 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=?
  1007. 17:48:10.946 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  1008. 17:48:10.946 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select agentlevel0_.id as id1_20_, agentlevel0_.add_ip as add_ip2_20_, agentlevel0_.add_time as add_time3_20_, agentlevel0_.add_user as add_user4_20_, agentlevel0_.modify_ip as modify_i5_20_, agentlevel0_.modify_time as modify_t6_20_, agentlevel0_.modify_user as modify_u7_20_, agentlevel0_.note as note8_20_, agentlevel0_.en_name as en_name9_20_, agentlevel0_.level_code as level_c10_20_, agentlevel0_.level_num as level_n11_20_, agentlevel0_.name as name12_20_, agentlevel0_.pid as pid13_20_, agentlevel0_.sub_id as sub_id14_20_, agentlevel0_.valid as valid15_20_, agentlevel0_.valid_sub as valid_s16_20_ from agent_level agentlevel0_ where agentlevel0_.level_num=? limit ?
  1009. 17:48:10.946 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1010. 17:48:10.962 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_, syspointta0_.add_ip as add_ip2_83_, syspointta0_.add_time as add_time3_83_, syspointta0_.add_user as add_user4_83_, syspointta0_.modify_ip as modify_i5_83_, syspointta0_.modify_time as modify_t6_83_, syspointta0_.modify_user as modify_u7_83_, syspointta0_.note as note8_83_, syspointta0_.agent_id as agent_id9_83_, syspointta0_.classic_cfd as classic10_83_, syspointta0_.classic_fx as classic11_83_, syspointta0_.com_point_one as com_poi12_83_, syspointta0_.com_point_two as com_poi13_83_, syspointta0_.en_name as en_name14_83_, syspointta0_.instant_fx as instant15_83_, syspointta0_.instant_index as instant16_83_, syspointta0_.instant_metal as instant17_83_, syspointta0_.main as main18_83_, syspointta0_.name as name19_83_, syspointta0_.type as type20_83_, syspointta0_.vip_cfd as vip_cfd21_83_, syspointta0_.vip_fx as vip_fx22_83_ from sys_point syspointta0_ where syspointta0_.main=? limit ?
  1011. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1012. 17:48:10.962 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(agentapply0_.id) as col_0_0_ from agent_apply agentapply0_ where agentapply0_.custom_id=? and agentapply0_.status=?
  1013. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1014. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1015. 17:48:10.962 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - insert into agent_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, agent_level, c_id, custom_id, group_id, pid, point_id, sales_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1016. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  1017. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 17:48:10 CST 2022]
  1018. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  1019. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1020. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1021. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1022. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1023. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1024. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1025. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1026. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1027. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1000]
  1028. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500003]
  1029. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [3]
  1030. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  1031. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20091]
  1032. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [2]
  1033. 17:48:10.962 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  1034. 17:48:15.511 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1035. 17:48:15.511 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1036. 17:48:15.511 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1037. 17:48:15.511 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1038. 17:48:26.360 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1039. 17:53:26.385 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1040. 17:54:08.834 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1041. 17:54:08.834 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1042. 17:54:08.834 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1043. 17:54:08.834 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1044. 17:54:59.430 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1045. 17:54:59.430 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1046. 17:54:59.430 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1047. 17:54:59.430 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1048. 17:54:59.493 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1049. 17:54:59.493 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1050. 17:54:59.493 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1051. 17:54:59.493 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1052. 17:55:04.102 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1053. 17:55:04.102 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1054. 17:55:04.102 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1055. 17:55:04.102 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1056. 17:55:06.712 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1057. 17:55:06.712 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1058. 17:55:06.712 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1059. 17:55:06.712 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1060. 17:55:36.634 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1061. 17:55:36.634 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1062. 17:55:36.634 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_, agentapply0_.add_ip as add_ip2_14_, agentapply0_.add_time as add_time3_14_, agentapply0_.add_user as add_user4_14_, agentapply0_.modify_ip as modify_i5_14_, agentapply0_.modify_time as modify_t6_14_, agentapply0_.modify_user as modify_u7_14_, agentapply0_.note as note8_14_, agentapply0_.approve_desc as approve_9_14_, agentapply0_.approve_time as approve10_14_, agentapply0_.approve_user as approve11_14_, agentapply0_.status as status12_14_, agentapply0_.agent_level as agent_l13_14_, agentapply0_.c_id as c_id14_14_, agentapply0_.custom_id as custom_15_14_, agentapply0_.group_id as group_i16_14_, agentapply0_.pid as pid17_14_, agentapply0_.point_id as point_i18_14_, agentapply0_.sales_id as sales_i19_14_ from agent_apply agentapply0_ where agentapply0_.custom_id=? order by agentapply0_.add_time desc limit ?
  1063. 17:55:36.634 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1064. 17:55:43.186 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentapply0_.id as id1_14_0_, agentapply0_.add_ip as add_ip2_14_0_, agentapply0_.add_time as add_time3_14_0_, agentapply0_.add_user as add_user4_14_0_, agentapply0_.modify_ip as modify_i5_14_0_, agentapply0_.modify_time as modify_t6_14_0_, agentapply0_.modify_user as modify_u7_14_0_, agentapply0_.note as note8_14_0_, agentapply0_.approve_desc as approve_9_14_0_, agentapply0_.approve_time as approve10_14_0_, agentapply0_.approve_user as approve11_14_0_, agentapply0_.status as status12_14_0_, agentapply0_.agent_level as agent_l13_14_0_, agentapply0_.c_id as c_id14_14_0_, agentapply0_.custom_id as custom_15_14_0_, agentapply0_.group_id as group_i16_14_0_, agentapply0_.pid as pid17_14_0_, agentapply0_.point_id as point_i18_14_0_, agentapply0_.sales_id as sales_i19_14_0_ from agent_apply agentapply0_ where agentapply0_.id=?
  1065. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1066. 17:55:43.186 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_0_, custominfo0_.add_ip as add_ip2_36_0_, custominfo0_.add_time as add_time3_36_0_, custominfo0_.add_user as add_user4_36_0_, custominfo0_.modify_ip as modify_i5_36_0_, custominfo0_.modify_time as modify_t6_36_0_, custominfo0_.modify_user as modify_u7_36_0_, custominfo0_.note as note8_36_0_, custominfo0_.approve_desc as approve_9_36_0_, custominfo0_.approve_time as approve10_36_0_, custominfo0_.approve_user as approve11_36_0_, custominfo0_.status as status12_36_0_, custominfo0_.address_line as address13_36_0_, custominfo0_.agent_id as agent_i14_36_0_, custominfo0_.apply_real_status as apply_r15_36_0_, custominfo0_.apply_real_time as apply_r16_36_0_, custominfo0_.area_code as area_co17_36_0_, custominfo0_.birth as birth18_36_0_, custominfo0_.c_id as c_id19_36_0_, custominfo0_.check_email as check_e20_36_0_, custominfo0_.check_phone as check_p21_36_0_, custominfo0_.city as city22_36_0_, custominfo0_.com_point as com_poi23_36_0_, custominfo0_.country as country24_36_0_, custominfo0_.country_en_name as country25_36_0_, custominfo0_.country_name as country26_36_0_, custominfo0_.email as email27_36_0_, custominfo0_.first_name as first_n28_36_0_, custominfo0_.gender as gender29_36_0_, custominfo0_.head_picture as head_pi30_36_0_, custominfo0_.hide as hide31_36_0_, custominfo0_.ib_id as ib_id32_36_0_, custominfo0_.ib_invalid as ib_inva33_36_0_, custominfo0_.identity as identit34_36_0_, custominfo0_.lang as lang35_36_0_, custominfo0_.last_address as last_ad36_36_0_, custominfo0_.last_ip as last_ip37_36_0_, custominfo0_.last_name as last_na38_36_0_, custominfo0_.last_time as last_ti39_36_0_, custominfo0_.middle as middle40_36_0_, custominfo0_.name_en as name_en41_36_0_, custominfo0_.nationality as nationa42_36_0_, custominfo0_.password as passwor43_36_0_, custominfo0_.phone as phone44_36_0_, custominfo0_.state as state45_36_0_, custominfo0_.tax_number as tax_num46_36_0_, custominfo0_.valid as valid47_36_0_, custominfo0_.zip_code as zip_cod48_36_0_ from custom_info custominfo0_ where custominfo0_.id=?
  1067. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1068. 17:55:43.186 [http-nio-9000-exec-8] 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=?
  1069. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  1070. 17:55:43.186 [http-nio-9000-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_.pid=?
  1071. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20091]
  1072. 17:55:43.186 [http-nio-9000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1073. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  1074. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 17:55:43 CST 2022]
  1075. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1076. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1077. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1078. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1079. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1080. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [1000]
  1081. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1082. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1083. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500003]
  1084. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1085. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1086. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [3]
  1087. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [nai78411@uzxia.com]
  1088. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1089. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1090. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1091. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [IB7500003]
  1092. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1093. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1094. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  1095. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  1096. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1097. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1098. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [123 123]
  1099. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010101]
  1100. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [null]
  1101. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1102. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [2]
  1103. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [-1]
  1104. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20091]
  1105. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01010104]
  1106. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1107. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [nai78411@uzxia.com]
  1108. 17:55:43.186 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1109. 17:55:43.202 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  1110. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2]
  1111. 17:55:43.202 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - insert into agent_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, classic_cfd, classic_fx, com_point_one, com_point_two, instant_fx, instant_index, instant_metal, percent, type, valid_time, vip_cfd, vip_fx) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1112. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
  1113. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 17:55:43 CST 2022]
  1114. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1115. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1116. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1117. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1118. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1119. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20097]
  1120. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [14.0]
  1121. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [7.0]
  1122. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [10.0]
  1123. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [20.0]
  1124. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [FLOAT] - [15.0]
  1125. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [FLOAT] - [6.0]
  1126. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [25.0]
  1127. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [0.0]
  1128. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  1129. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [TIMESTAMP] - [Sun Jul 10 17:55:43 CST 2022]
  1130. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [FLOAT] - [10.0]
  1131. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [FLOAT] - [5.0]
  1132. 17:55:43.202 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - update agent_apply set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, agent_level=?, c_id=?, custom_id=?, group_id=?, pid=?, point_id=?, sales_id=? where id=?
  1133. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  1134. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-10 17:48:11.0]
  1135. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  1136. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1137. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1138. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1139. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1140. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1141. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 10 17:55:43 CST 2022]
  1142. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  1143. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1144. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [1000]
  1145. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [500003]
  1146. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [3]
  1147. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [1000]
  1148. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [20091]
  1149. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [2]
  1150. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [20091]
  1151. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [5]
  1152. 17:55:43.202 [http-nio-9000-exec-8] 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=?
  1153. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [45.58.53.121]
  1154. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-06 15:21:25.0]
  1155. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  1156. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.115.40.144]
  1157. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-10 17:47:58.0]
  1158. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [3]
  1159. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1160. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1161. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-06 15:23:11.0]
  1162. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  1163. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1164. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [123123@#123123]
  1165. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  1166. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1167. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-06 15:22:40.0]
  1168. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1169. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2022-07-21 00:00:00.0]
  1170. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500003]
  1171. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1172. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1173. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [丽江]
  1174. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
  1175. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1176. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1177. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1178. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [nai78411@uzxia.com]
  1179. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [123]
  1180. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1181. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1182. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1183. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [20097]
  1184. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  1185. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [123123]
  1186. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1187. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [浙江省宁波市 电信]
  1188. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.115.40.144]
  1189. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [123]
  1190. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-10 17:47:58.0]
  1191. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1192. 17:55:43.202 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [123 123]
  1193. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [AL]
  1194. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [0abb0f970d67501c94c6d4ff09f71a30]
  1195. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1312312334342]
  1196. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
  1197. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1198. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1199. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [123123]
  1200. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [3]
  1201. 17:55:43.218 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1202. 17:55:43.218 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1203. 17:55:43.218 [http-nio-9000-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1657446943218,"addUser":1,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"AGENT_REGISTER","imageFilesMap":null,"map":{"V_AGENT_ID_V":"20097","V_IB_NO_V":"IB7500003","V_DATE_TIME_V":"2022-07-10 17:55:43","V_NAME_V":"123 123"},"note":null,"sendDate":null,"subject":null,"templateName":"AGENT_REGISTER_COMPLETE_SEND_CN","users":"nai78411@uzxia.com"}
  1204. 17:55:50.686 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1205. 17:55:50.686 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1206. 17:55:51.374 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1207. 17:55:51.374 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1208. 17:55:51.374 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  1209. 17:55:51.374 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1210. 17:55:51.374 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  1211. 17:55:51.374 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1212. 17:56:02.015 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1213. 17:56:02.015 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1214. 17:57:48.252 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1215. 17:57:48.252 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1216. 17:58:26.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1217. 17:58:47.706 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  1218. 17:58:47.706 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1]
  1219. 17:58:47.722 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1220. 17:58:47.722 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1221. 17:58:47.753 [http-nio-9000-exec-9] ERROR java.lang.RuntimeException - 出错类:com.crm.ib.service.impl.SysPointServiceImpluccess
  1222. ,出错方法saveuccess
  1223. java.lang.NullPointerExceptionuccess,异常行号:79
  1224. 18:03:26.430 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1225. 18:08:26.443 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1226. 18:10:18.320 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1227. 18:10:18.320 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1228. 18:10:26.992 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  1229. 18:10:26.992 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1]
  1230. 18:10:27.008 [http-nio-9000-exec-2] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1231. 18:10:27.008 [http-nio-9000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1232. 18:10:27.008 [http-nio-9000-exec-2] ERROR java.lang.RuntimeException - 出错类:com.crm.ib.service.impl.SysPointServiceImpluccess
  1233. ,出错方法saveuccess
  1234. java.lang.NullPointerExceptionuccess,异常行号:79
  1235. 18:10:45.618 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  1236. 18:10:45.618 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [asd]
  1237. 18:10:45.618 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1238. 18:10:45.633 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1239. 18:10:45.633 [http-nio-9000-exec-1] ERROR java.lang.RuntimeException - 出错类:com.crm.ib.service.impl.SysPointServiceImpluccess
  1240. ,出错方法saveuccess
  1241. java.lang.NullPointerExceptionuccess,异常行号:79
  1242. 18:12:35.557 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1243. 18:12:35.557 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
  1244. 18:12:35.900 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1245. 18:12:35.900 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1246. 18:12:35.900 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  1247. 18:12:35.900 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1248. 18:12:35.900 [http-nio-9000-exec-7] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  1249. 18:12:35.900 [http-nio-9000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1250. 18:12:43.807 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1251. 18:12:43.807 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1252. 18:12:54.854 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  1253. 18:12:54.854 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123]
  1254. 18:12:54.854 [http-nio-9000-exec-3] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1255. 18:12:54.854 [http-nio-9000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1256. 18:12:54.854 [http-nio-9000-exec-3] ERROR java.lang.RuntimeException - 出错类:com.crm.ib.service.impl.SysPointServiceImpluccess
  1257. ,出错方法saveuccess
  1258. java.lang.NullPointerExceptionuccess,异常行号:79
  1259. 18:13:26.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1260. 18:18:26.490 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1261. 18:23:26.514 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1262. 18:27:50.079 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1263. 18:27:50.079 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1264. 18:28:26.539 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1265. 18:29:10.149 [http-nio-9000-exec-1] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1266. 18:29:10.149 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20097]
  1267. 18:33:26.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1268. 18:38:26.575 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1269. 18:43:26.590 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1270. 18:48:26.613 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1271. 18:53:26.631 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1272. 18:58:26.656 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1273. 19:03:26.677 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1274. 19:08:26.701 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1275. 19:13:26.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1276. 19:18:26.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1277. 19:23:26.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1278. 19:28:26.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1279. 19:33:26.818 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1280. 19:38:26.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1281. 19:43:26.858 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1282. 19:48:26.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1283. 19:53:26.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1284. 19:58:26.928 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1285. 20:03:26.943 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1286. 20:08:26.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1287. 20:13:26.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1288. 20:18:27.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1289. 20:23:27.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1290. 20:28:27.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1291. 20:33:27.072 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1292. 20:38:27.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1293. 20:43:27.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1294. 20:48:27.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1295. 20:53:27.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1296. 20:58:27.172 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1297. 21:03:27.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1298. 21:08:27.213 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1299. 21:13:27.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1300. 21:18:27.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1301. 21:23:27.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1302. 21:28:27.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1303. 21:33:27.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1304. 21:38:27.322 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1305. 21:43:27.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1306. 21:48:27.364 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1307. 21:53:27.381 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1308. 21:58:27.394 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1309. 22:03:27.411 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1310. 22:08:27.434 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1311. 22:13:27.454 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1312. 22:18:27.473 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1313. 22:23:27.492 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1314. 22:28:27.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1315. 22:33:27.539 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1316. 22:38:27.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1317. 22:43:27.585 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1318. 22:48:27.609 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1319. 22:53:27.637 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1320. 22:53:40.411 [Thread-8] INFO o.s.b.c.e.AnnotationConfigEmbeddedWebApplicationContext - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86: startup date [Tue Jul 05 18:00:16 CST 2022]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1edf1c96
  1321. 22:53:40.411 [Thread-13] INFO c.n.l.PollingServerListUpdater - Shutting down the Executor Pool for PollingServerListUpdater
  1322. 22:53:40.411 [Thread-8] INFO o.s.c.n.e.s.EurekaServiceRegistry - Unregistering application ib-service with eureka with status DOWN
  1323. 22:53:40.427 [Thread-8] WARN c.netflix.discovery.DiscoveryClient - Saw local status change event StatusChangeEvent [timestamp=1657464820427, current=DOWN, previous=UP]
  1324. 22:53:40.427 [DiscoveryClient-InstanceInfoReplicator-0] INFO c.netflix.discovery.DiscoveryClient - DiscoveryClient_IB-SERVICE/ib-service:103.148.58.88:9000: registering service...
  1325. 22:53:40.427 [Thread-8] INFO c.netflix.discovery.DiscoveryClient - Shutting down DiscoveryClient ...
  1326. 22:53:40.427 [Thread-8] INFO c.netflix.discovery.DiscoveryClient - Unregistering ...
  1327. 22:53:40.442 [DiscoveryClient-InstanceInfoReplicator-0] INFO c.netflix.discovery.DiscoveryClient - DiscoveryClient_IB-SERVICE/ib-service:103.148.58.88:9000 - registration status: 204
  1328. 22:53:40.458 [Thread-8] INFO c.netflix.discovery.DiscoveryClient - DiscoveryClient_IB-SERVICE/ib-service:103.148.58.88:9000 - deregister status: 200
  1329. 22:53:40.458 [Thread-8] INFO c.netflix.discovery.DiscoveryClient - Completed shut down of DiscoveryClient
  1330. 22:53:40.458 [Thread-8] INFO o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147483647
  1331. 22:53:40.458 [Thread-8] INFO o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 0
  1332. 22:53:40.458 [Thread-8] INFO o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown
  1333. 22:53:40.458 [Thread-8] INFO o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans
  1334. 22:53:40.458 [Thread-8] INFO o.s.s.c.ThreadPoolTaskExecutor - Shutting down ExecutorService 'taskExecutor'
  1335. 22:53:40.458 [Thread-8] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'scheduledExecutorService'
  1336. 22:53:40.505 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2c1a0e1a: startup date [Sun Jul 10 16:56:09 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1337. 22:53:40.521 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1338. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1339. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1340. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1341. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1342. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1343. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1344. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1345. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1346. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1347. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1348. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1349. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1350. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1351. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1352. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1353. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1354. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1355. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1356. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1357. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1358. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1359. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1360. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1361. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1362. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1363. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1364. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1365. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1366. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook removed for: NFLoadBalancer-PingTimer-TASK-SERVICE
  1367. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Exception caught (might be ok if at shutdown)
  1368. java.lang.IllegalStateException: Shutdown in progress
  1369. at java.lang.ApplicationShutdownHooks.remove(Unknown Source)
  1370. at java.lang.Runtime.removeShutdownHook(Unknown Source)
  1371. at com.netflix.util.concurrent.ShutdownEnabledTimer.cancel(ShutdownEnabledTimer.java:70)
  1372. at com.netflix.loadbalancer.BaseLoadBalancer.cancelPingTask(BaseLoadBalancer.java:613)
  1373. at com.netflix.loadbalancer.BaseLoadBalancer.shutdown(BaseLoadBalancer.java:864)
  1374. at com.netflix.loadbalancer.DynamicServerListLoadBalancer.shutdown(DynamicServerListLoadBalancer.java:277)
  1375. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1376. at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  1377. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  1378. at java.lang.reflect.Method.invoke(Unknown Source)
  1379. at org.springframework.beans.factory.support.DisposableBeanAdapter.invokeCustomDestroyMethod(DisposableBeanAdapter.java:364)
  1380. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:287)
  1381. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1382. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1383. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1384. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1385. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1386. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1387. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1388. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1389. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1390. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1391. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1392. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1393. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1394. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1395. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1396. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1397. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1398. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1399. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1400. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1401. 22:53:40.521 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@55708aff: startup date [Sun Jul 10 15:35:39 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1402. 22:53:40.521 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1403. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1404. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1405. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1406. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1407. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1408. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1409. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1410. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1411. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1412. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1413. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1414. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1415. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1416. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1417. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1418. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1419. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1420. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1421. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1422. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1423. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1424. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1425. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1426. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1427. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1428. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1429. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1430. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1431. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook removed for: NFLoadBalancer-PingTimer-ACTIVITY-SERVICE
  1432. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Exception caught (might be ok if at shutdown)
  1433. java.lang.IllegalStateException: Shutdown in progress
  1434. at java.lang.ApplicationShutdownHooks.remove(Unknown Source)
  1435. at java.lang.Runtime.removeShutdownHook(Unknown Source)
  1436. at com.netflix.util.concurrent.ShutdownEnabledTimer.cancel(ShutdownEnabledTimer.java:70)
  1437. at com.netflix.loadbalancer.BaseLoadBalancer.cancelPingTask(BaseLoadBalancer.java:613)
  1438. at com.netflix.loadbalancer.BaseLoadBalancer.shutdown(BaseLoadBalancer.java:864)
  1439. at com.netflix.loadbalancer.DynamicServerListLoadBalancer.shutdown(DynamicServerListLoadBalancer.java:277)
  1440. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1441. at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  1442. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  1443. at java.lang.reflect.Method.invoke(Unknown Source)
  1444. at org.springframework.beans.factory.support.DisposableBeanAdapter.invokeCustomDestroyMethod(DisposableBeanAdapter.java:364)
  1445. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:287)
  1446. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1447. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1448. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1449. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1450. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1451. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1452. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1453. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1454. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1455. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1456. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1457. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1458. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1459. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1460. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1461. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1462. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1463. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1464. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1465. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1466. 22:53:40.521 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@4d2893b8: startup date [Wed Jul 06 16:35:56 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1467. 22:53:40.521 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1468. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1469. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1470. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1471. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1472. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1473. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1474. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1475. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1476. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1477. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1478. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1479. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1480. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1481. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1482. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1483. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1484. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1485. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1486. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1487. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1488. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1489. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1490. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1491. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1492. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1493. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1494. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1495. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1496. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Shutdown hook removed for: NFLoadBalancer-PingTimer-CUSTOM-SERVICE
  1497. 22:53:40.521 [Thread-8] INFO c.n.u.c.ShutdownEnabledTimer - Exception caught (might be ok if at shutdown)
  1498. java.lang.IllegalStateException: Shutdown in progress
  1499. at java.lang.ApplicationShutdownHooks.remove(Unknown Source)
  1500. at java.lang.Runtime.removeShutdownHook(Unknown Source)
  1501. at com.netflix.util.concurrent.ShutdownEnabledTimer.cancel(ShutdownEnabledTimer.java:70)
  1502. at com.netflix.loadbalancer.BaseLoadBalancer.cancelPingTask(BaseLoadBalancer.java:613)
  1503. at com.netflix.loadbalancer.BaseLoadBalancer.shutdown(BaseLoadBalancer.java:864)
  1504. at com.netflix.loadbalancer.DynamicServerListLoadBalancer.shutdown(DynamicServerListLoadBalancer.java:277)
  1505. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1506. at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  1507. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  1508. at java.lang.reflect.Method.invoke(Unknown Source)
  1509. at org.springframework.beans.factory.support.DisposableBeanAdapter.invokeCustomDestroyMethod(DisposableBeanAdapter.java:364)
  1510. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:287)
  1511. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1512. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1513. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1514. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1515. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1516. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1517. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1518. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1519. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1520. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1521. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1522. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1523. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1524. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1525. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1526. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1527. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1528. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1529. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1530. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1531. 22:53:40.521 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@63dc973e: startup date [Tue Jul 05 18:02:35 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1532. 22:53:40.521 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1533. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1534. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1535. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1536. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1537. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1538. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1539. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1540. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1541. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1542. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1543. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1544. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1545. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1546. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1547. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1548. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1549. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1550. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1551. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1552. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1553. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1554. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1555. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1556. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1557. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1558. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1559. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1560. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1561. 22:53:40.536 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@61dcf21f: startup date [Tue Jul 05 18:02:17 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1562. 22:53:40.536 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1563. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1564. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1565. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1566. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1567. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1568. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1569. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1570. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1571. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1572. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1573. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1574. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1575. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1576. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1577. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1578. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1579. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1580. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1581. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1582. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1583. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1584. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1585. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1586. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1587. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1588. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1589. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1590. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1591. 22:53:40.536 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@57a22410: startup date [Tue Jul 05 18:01:58 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1592. 22:53:40.536 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1593. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1594. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1595. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1596. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1597. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1598. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1599. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1600. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1601. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1602. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1603. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1604. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1605. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1606. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1607. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1608. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1609. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1610. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1611. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1612. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1613. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1614. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1615. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1616. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1617. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1618. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1619. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1620. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1621. 22:53:40.536 [Thread-8] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@5073b0b8: startup date [Tue Jul 05 18:02:27 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@64bfbc86
  1622. 22:53:40.536 [Thread-8] WARN o.s.c.a.AnnotationConfigApplicationContext - Exception thrown from ApplicationListener handling ContextClosedEvent
  1623. org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  1624. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:216)
  1625. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
  1626. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
  1627. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1078)
  1628. at org.springframework.context.event.ApplicationListenerMethodAdapter.getTargetBean(ApplicationListenerMethodAdapter.java:283)
  1629. at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:253)
  1630. at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:177)
  1631. at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:140)
  1632. at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
  1633. at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
  1634. at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
  1635. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:393)
  1636. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:399)
  1637. at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:347)
  1638. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:991)
  1639. at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:958)
  1640. at org.springframework.cloud.context.named.NamedContextFactory.destroy(NamedContextFactory.java:76)
  1641. at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:272)
  1642. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:578)
  1643. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:554)
  1644. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:961)
  1645. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:523)
  1646. at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.destroySingletons(FactoryBeanRegistrySupport.java:230)
  1647. at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:968)
  1648. at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1030)
  1649. at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1006)
  1650. at org.springframework.context.support.AbstractApplicationContext$2.run(AbstractApplicationContext.java:929)
  1651. 22:53:40.536 [Thread-8] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default'
  1652. 22:53:40.552 [Thread-8] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
  1653. 22:55:29.125 [main] INFO com.crm.ib.IbApplication - The following profiles are active: prod
  1654. 22:55:29.157 [main] INFO o.s.b.c.e.AnnotationConfigEmbeddedWebApplicationContext - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113: startup date [Sun Jul 10 22:55:29 CST 2022]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1edf1c96
  1655. 22:55:31.438 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  1656. 22:55:32.563 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=c7d489a9-5c32-30be-9559-b3ba34b5f5f7
  1657. 22:55:32.610 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  1658. 22:55:32.657 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.AgentPointIbTaskService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1659. 22:55:32.657 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.CustomActivityFeignService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1660. 22:55:32.657 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.CustomInfoFeignService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1661. 22:55:32.672 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.CustomLoginFeignService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1662. 22:55:32.672 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.FinanceAgentWithdrawFeignService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1663. 22:55:32.672 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.crm.ib.service.WebActivityFeignService' of type [org.springframework.cloud.netflix.feign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1664. 22:55:32.953 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$a4462ff0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1665. 22:55:33.313 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$c06032ed] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1666. 22:55:34.907 [main] INFO o.s.b.c.e.t.TomcatEmbeddedServletContainer - Tomcat initialized with port(s): 9000 (http)
  1667. 22:55:34.922 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
  1668. 22:55:34.922 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet Engine: Apache Tomcat/8.5.23
  1669. 22:55:35.094 [localhost-startStop-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
  1670. 22:55:35.094 [localhost-startStop-1] INFO o.s.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 5937 ms
  1671. 22:55:35.938 [localhost-startStop-1] INFO o.s.b.w.s.ServletRegistrationBean - Mapping servlet: 'dispatcherServlet' to [/]
  1672. 22:55:35.953 [localhost-startStop-1] INFO o.s.b.w.s.FilterRegistrationBean - Mapping filter: 'characterEncodingFilter' to: [/*]
  1673. 22:55:35.953 [localhost-startStop-1] INFO o.s.b.w.s.FilterRegistrationBean - Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  1674. 22:55:35.953 [localhost-startStop-1] INFO o.s.b.w.s.FilterRegistrationBean - Mapping filter: 'httpPutFormContentFilter' to: [/*]
  1675. 22:55:35.953 [localhost-startStop-1] INFO o.s.b.w.s.FilterRegistrationBean - Mapping filter: 'requestContextFilter' to: [/*]
  1676. 22:55:37.407 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
  1677. 22:55:37.844 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Building JPA container EntityManagerFactory for persistence unit 'default'
  1678. 22:55:37.875 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [
  1679. name: default
  1680. ...]
  1681. 22:55:38.016 [main] INFO org.hibernate.Version - HHH000412: Hibernate Core {5.0.12.Final}
  1682. 22:55:38.016 [main] INFO org.hibernate.cfg.Environment - HHH000206: hibernate.properties not found
  1683. 22:55:38.032 [main] INFO org.hibernate.cfg.Environment - HHH000021: Bytecode provider name : javassist
  1684. 22:55:38.110 [main] INFO o.h.annotations.common.Version - HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
  1685. 22:55:38.438 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
  1686. 22:55:40.266 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default'
  1687. 22:55:42.875 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@54d1c9ba: startup date [Sun Jul 10 22:55:42 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113
  1688. 22:55:42.907 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  1689. 22:55:47.141 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@5e3c3c3d: startup date [Sun Jul 10 22:55:47 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113
  1690. 22:55:47.157 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  1691. 22:55:49.407 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@55ecf961: startup date [Sun Jul 10 22:55:49 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113
  1692. 22:55:49.422 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  1693. 22:55:50.969 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@5bd3d747: startup date [Sun Jul 10 22:55:50 CST 2022]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113
  1694. 22:55:50.985 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  1695. 22:55:53.282 [main] WARN c.n.c.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
  1696. 22:55:53.282 [main] INFO c.n.c.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
  1697. 22:55:53.297 [main] WARN c.n.c.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
  1698. 22:55:53.297 [main] INFO c.n.c.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
  1699. 22:55:54.110 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerAdapter - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@55d56113: startup date [Sun Jul 10 22:55:29 CST 2022]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1edf1c96
  1700. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/account/belong/change/search/list],methods=[POST]}" onto com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.account.belong.AccountBelongChangeDto>> com.crm.ib.controller.AccountBelongChangeController.searchList(com.crm.rely.backend.core.entity.account.belong.AccountBelongChangeListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1701. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/account/belong/change/agents],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbDropDownInfoDto>> com.crm.ib.controller.AccountBelongChangeController.getAgents(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1702. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/account/belong/change/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AccountBelongChangeController.accountBelongChangeAdd(com.crm.rely.backend.core.entity.account.belong.AccountBelongChangeAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1703. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/account/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>, com.crm.rely.backend.core.dto.ib.account.AccountInfoSumDto> com.crm.ib.controller.AccountInfoController.accountList(com.crm.rely.backend.core.entity.ib.account.AccountInfoListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1704. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/account/logins],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>> com.crm.ib.controller.AccountInfoController.accountLogins(java.util.Map<java.lang.String, java.util.List<com.crm.rely.backend.core.entity.ib.account.CustomAccountLoginsEntity>>) throws java.lang.Exception
  1705. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/balance/transfer/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentBalanceTransferController.add(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceTransferAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1706. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/balance/transfer/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceTransferDto>> com.crm.ib.controller.AgentBalanceTransferController.searchList(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceTransferListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1707. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/balance/transfer/from],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceTransferDataDto> com.crm.ib.controller.AgentBalanceTransferController.getFromData(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1708. 22:55:54.469 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/commission/change],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentCommissionController.commissionChange(com.crm.rely.backend.core.entity.ib.commission.IbCommissionChangeAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1709. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbInfoDto>> com.crm.ib.controller.AgentInfoController.getList(com.crm.rely.backend.core.entity.ib.info.IbInfoSearchListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1710. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/login],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.info.IbInfoDto> com.crm.ib.controller.AgentInfoController.ibLogin(com.crm.rely.backend.core.entity.ib.info.IbLoginEntity) throws java.lang.Exception
  1711. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.info.IbInfoDto> com.crm.ib.controller.AgentInfoController.searchSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1712. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/delete],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentInfoController.deleteIb(com.crm.rely.backend.core.entity.base.BaseDeleteEntities,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1713. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/tree/search],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.AgentInfoTreeDto>> com.crm.ib.controller.AgentInfoController.agentTreeSearch(com.crm.rely.backend.core.entity.ib.info.AgentInfoTreeEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1714. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/report/balance],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceRecordDto>, com.crm.rely.backend.core.dto.ib.balance.AgentBalanceReportSumDto> com.crm.ib.controller.AgentInfoController.ibBalanceReport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1715. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/refresh/stamp],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentInfoController.refreshStamp() throws java.lang.Exception
  1716. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/manage/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentInfoController.manageAddIb() throws java.lang.Exception
  1717. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/data],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.info.IbDataDto> com.crm.ib.controller.AgentInfoController.ibData(com.crm.rely.backend.core.entity.custom.info.InfoEntity,javax.servlet.http.HttpServletRequest) throws java.lang.Exception
  1718. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/balance],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.entity.ib.balance.IbBalanceInfoDto> com.crm.ib.controller.AgentInfoController.getBalance(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1719. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/report/new],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbReportNewDto>> com.crm.ib.controller.AgentInfoController.ibReportNew(com.crm.rely.backend.core.entity.ib.info.IbReportNewEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1720. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/subs],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbSubsInfoDto>> com.crm.ib.controller.AgentInfoController.getSubs(com.crm.rely.backend.core.entity.ib.info.IbInfoSearchListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1721. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/tree],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.AgentInfoTreeDto>> com.crm.ib.controller.AgentInfoController.agentTree(com.crm.rely.backend.core.entity.ib.info.AgentInfoTreeEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1722. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/ib/report/withdrawal],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceWithdrawalDto>, com.crm.rely.backend.core.dto.ib.balance.AgentBalanceWithdrawalSumDto> com.crm.ib.controller.AgentInfoController.ibWithdrawalReport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1723. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/point/change/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.point.AgentPointRecordDto>> com.crm.ib.controller.AgentPointController.getList(com.crm.rely.backend.core.entity.ib.point.AgentPointRecordListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1724. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/point/change/apply],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.AgentPointController.changeApplySave(com.crm.rely.backend.core.entity.ib.point.AgentPointChangeAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1725. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/agent/point/change/data],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.point.SysPointChangeDto> com.crm.ib.controller.AgentPointController.getChangeData(org.apache.catalina.servlet4preview.http.HttpServletRequest,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1726. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/account/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>, com.crm.rely.backend.core.dto.ib.account.AccountInfoSumDto> com.crm.ib.controller.custom.AccountInfoCustomServiceController.accountList(com.crm.rely.backend.core.entity.ib.account.AccountInfoListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1727. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/account/logins],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>> com.crm.ib.controller.custom.AccountInfoCustomServiceController.accountLogins(java.util.Map<java.lang.String, java.util.List<com.crm.rely.backend.core.entity.ib.account.CustomAccountLoginsEntity>>) throws java.lang.Exception
  1728. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/account/dropdown],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>> com.crm.ib.controller.custom.AccountInfoCustomServiceController.accountDropdown(com.crm.rely.backend.core.entity.ib.account.AccountInfoListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1729. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/account/get/logins],methods=[POST]}" onto public java.util.Map<java.lang.String, com.crm.rely.backend.core.dto.ib.account.AccountBalanceDto> com.crm.ib.controller.custom.AccountInfoCustomServiceController.accountGetLogins(java.util.List<com.crm.rely.backend.core.entity.ib.account.CustomAccountLoginsEntity>) throws java.lang.Exception
  1730. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/agent/apply/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.custom.AgentApplyCSController.add(com.crm.rely.backend.core.entity.ib.apply.AgentApplyAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1731. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/agent/apply/status],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.apply.AgentApplyStatusDto> com.crm.ib.controller.custom.AgentApplyCSController.status(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1732. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/agent/apply/status/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.Map<java.lang.Long, java.lang.Integer>> com.crm.ib.controller.custom.AgentApplyCSController.statusList(com.crm.rely.backend.core.entity.base.LongEntitys,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1733. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/search/single/cid],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.info.IbInfoDto> com.crm.ib.controller.custom.AgentInfoCustomServiceController.getIbInfoByCid(com.crm.rely.backend.core.entity.base.SingleLongEntity) throws java.lang.Exception
  1734. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/service/index/chart/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.entity.custom.chart.CustomChartDto>> com.crm.ib.controller.custom.IndexCustomServiceController.chartList(com.crm.rely.backend.core.entity.ib.daily.DailyDataEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1735. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/commission/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.custom.commission.CustomCommissionApplyDto>> com.crm.ib.controller.CustomCommissionApplyController.getList(com.crm.rely.backend.core.entity.custom.commission.CustomCommissionApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1736. 22:55:54.485 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/commission/apply/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.CustomCommissionApplyController.customCommissionApplyAdd(com.crm.rely.backend.core.entity.custom.commission.CustomCommissionApplyAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1737. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/info/update/ibInvalid],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.CustomInfoController.updateIBInvalid(com.crm.rely.backend.core.entity.custom.info.CustomIbInvalidUpdateEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1738. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/custom/info/belongs],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.custom.info.CustomBelongsInfoDto>> com.crm.ib.controller.CustomInfoController.customBelongs(com.crm.rely.backend.core.entity.custom.info.CustomBelongsListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1739. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/finance/agent/withdraw/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.finance.withdraw.FinanceAgentWithdrawDto>> com.crm.ib.controller.FinanceAgentWithdrawController.searchList(com.crm.rely.backend.core.entity.finance.withdraw.FinanceAgentWithdrawSearchListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1740. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/finance/agent/withdraw/apply/bank/telegraphic],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto com.crm.ib.controller.FinanceAgentWithdrawController.bankTelegraphic(com.crm.rely.backend.core.entity.finance.withdraw.FinanceAgentWithdrawBankAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1741. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/finance/agent/withdraw/apply/digital/currency],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto com.crm.ib.controller.FinanceAgentWithdrawController.digitalCurrency(com.crm.rely.backend.core.entity.finance.withdraw.FinanceAgentWithdrawDigitalCurrencyAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1742. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/finance/agent/withdraw/apply/bank],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto com.crm.ib.controller.FinanceAgentWithdrawController.bank(com.crm.rely.backend.core.entity.finance.withdraw.FinanceAgentWithdrawBankAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1743. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/index/amount],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.daily.DailyDataDto> com.crm.ib.controller.IndexController.amount(com.crm.rely.backend.core.entity.ib.daily.DailyDataEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1744. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/index/daily/data],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.daily.DailyDataDto>> com.crm.ib.controller.IndexController.dailyData(com.crm.rely.backend.core.entity.ib.daily.DailyDataEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1745. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/index/account],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.IndexController.account(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1746. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/apply/data],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamApplyDataDto>> com.crm.ib.controller.MamApplyController.mamApplyData(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1747. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/apply/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamApplyController.addApply(com.crm.rely.backend.core.entity.mam.MamApplyAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1748. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/apply/delete],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamApplyController.deleteApply(com.crm.rely.backend.core.entity.mam.MamApplyDeleteEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1749. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamApplyDto>> com.crm.ib.controller.MamApplyController.applyList(com.crm.rely.backend.core.entity.mam.MamApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1750. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/subs/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamSubsApplyDto>> com.crm.ib.controller.MamController.getList(com.crm.rely.backend.core.entity.mam.MamSubsApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1751. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/subs/info],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<java.lang.String>> com.crm.ib.controller.MamController.mamSubsInfo(com.crm.rely.backend.core.entity.mam.MamSubsSelectEntity,org.apache.catalina.servlet4preview.http.HttpServletRequest,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1752. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/subs/apply],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamController.mamSubsApply(com.crm.rely.backend.core.entity.mam.MamSubsApplyAddEntity,org.apache.catalina.servlet4preview.http.HttpServletRequest,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1753. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamListDto>> com.crm.ib.controller.MamListController.mamList(com.crm.rely.backend.core.entity.mam.MamListSearchEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1754. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/repwd/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamSettingController.mamRepwd(com.crm.rely.backend.core.entity.mam.MamRepwdAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1755. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/pwd/reset/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamSettingController.mamPwdResetAdd(com.crm.rely.backend.core.entity.mam.MamPwdResetAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1756. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/repwd/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamRepwdDto>> com.crm.ib.controller.MamSettingController.mamRepwdList(com.crm.rely.backend.core.entity.mam.MamRepwdListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1757. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/pwd/reset/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamPwdResetDto>> com.crm.ib.controller.MamSettingController.mamPwdResetList(com.crm.rely.backend.core.entity.mam.MamPwdResetListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1758. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/leverage/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamLeverageApplyDto>> com.crm.ib.controller.MamSettingController.mamLeverageApplyList(com.crm.rely.backend.core.entity.mam.MamLeverageApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1759. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/mam/leverage/apply/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.MamSettingController.mamLeverageApplyAdd(com.crm.rely.backend.core.entity.mam.MamLeverageApplyAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1760. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/belong/change/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AccountBelongChangeManageServiceController.add(com.crm.rely.backend.core.entity.account.belong.AccountBelongChangeAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1761. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/belong/change/search/list],methods=[POST]}" onto com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.account.belong.AccountBelongChangeDto>> com.crm.ib.controller.manage.AccountBelongChangeManageServiceController.searchList(com.crm.rely.backend.core.entity.account.belong.AccountBelongChangeListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1762. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/belong/change/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.account.belong.AccountBelongChangeDto> com.crm.ib.controller.manage.AccountBelongChangeManageServiceController.searchSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1763. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/belong/change/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AccountBelongChangeManageServiceController.approve(com.crm.rely.backend.core.entity.base.BaseApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1764. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AccountInfoManageServiceController.managerSearchSingle(com.crm.rely.backend.core.entity.account.info.AccountInfoSingleEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1765. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.account.AccountInfoDto>, com.crm.rely.backend.core.dto.ib.account.AccountInfoSumDto> com.crm.ib.controller.manage.AccountInfoManageServiceController.manageAccountList(com.crm.rely.backend.core.entity.ib.account.AccountInfoListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1766. 22:55:54.501 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/trading/activity/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.account.trading.AccountTradingActivityDto>> com.crm.ib.controller.manage.AccountTradingActivityMSController.getList(com.crm.rely.backend.core.entity.account.trading.AccountTradingActivityListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1767. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/account/trading/activity/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.account.trading.AccountTradingActivityDto>> com.crm.ib.controller.manage.AccountTradingActivityMSController.export(com.crm.rely.backend.core.entity.account.trading.AccountTradingActivityListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1768. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/apply/status/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.Map<java.lang.Long, java.lang.Integer>> com.crm.ib.controller.manage.AgentApplyMSController.statusList(com.crm.rely.backend.core.entity.base.LongEntitys,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1769. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.apply.AgentApplyDto>> com.crm.ib.controller.manage.AgentApplyMSController.getList(com.crm.rely.backend.core.entity.ib.apply.AgentApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1770. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/apply/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentApplyMSController.approve(com.crm.rely.backend.core.entity.ib.apply.AgentApplyApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1771. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/frozen/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentBalanceFrozenMSController.add(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceFrozenAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1772. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/record/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentBalanceRecordManageServiceController.add(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceRecordAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1773. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/record/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceRecordDto>> com.crm.ib.controller.manage.AgentBalanceRecordManageServiceController.searchList(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceRecordListEntity) throws java.lang.Exception
  1774. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/record/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceRecordDto> com.crm.ib.controller.manage.AgentBalanceRecordManageServiceController.searchSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity) throws java.lang.Exception
  1775. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/record/delete/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentBalanceRecordManageServiceController.deleteSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity) throws java.lang.Exception
  1776. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/transfer/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceTransferDto>> com.crm.ib.controller.manage.AgentBalanceTransferMSController.searchList(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceTransferListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1777. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/transfer/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceTransferDto> com.crm.ib.controller.manage.AgentBalanceTransferMSController.searchSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1778. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/balance/transfer/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentBalanceTransferMSController.approve(com.crm.rely.backend.core.entity.ib.balance.AgentBalanceTransferApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1779. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/belong/change/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentBelongChangeMSController.save(com.crm.rely.backend.core.entity.ib.belong.AgentBelongChangeAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1780. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/belong/change/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.belong.AgentBelongChangeDto>> com.crm.ib.controller.manage.AgentBelongChangeMSController.searchList(com.crm.rely.backend.core.entity.ib.belong.AgentBelongChangeListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1781. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/tree],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.AgentInfoTreeDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.getTree(com.crm.rely.backend.core.entity.ib.info.AgentInfoTreeEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1782. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/tree/search],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.AgentInfoTreeDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.agentTreeSearch(com.crm.rely.backend.core.entity.ib.info.AgentInfoTreeEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1783. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/report/balance],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceRecordDto>, com.crm.rely.backend.core.dto.ib.balance.AgentBalanceReportSumDto> com.crm.ib.controller.manage.AgentInfoManageServiceController.ibBalanceReport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1784. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/report/new],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbReportNewDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.ibReportNew(com.crm.rely.backend.core.entity.ib.info.IbReportNewEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1785. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/delete/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentInfoManageServiceController.deleteIbInSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1786. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/update/hide],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentInfoManageServiceController.updateHide(com.crm.rely.backend.core.entity.user.info.UserInfoUpdateHideEntity) throws java.lang.Exception
  1787. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/search/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbInfoDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.manageGetList(com.crm.rely.backend.core.entity.ib.info.IbInfoSearchListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1788. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/delete/batch],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.AgentInfoManageServiceController.deleteIbInBatch(com.crm.rely.backend.core.entity.base.BaseDeleteEntities,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1789. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/point],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.point.AgentPointDto> com.crm.ib.controller.manage.AgentInfoManageServiceController.ibPoint(com.crm.rely.backend.core.entity.ib.point.AgentPointSingleEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1790. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/report/withdrawal],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceWithdrawalDto>, com.crm.rely.backend.core.dto.ib.balance.AgentBalanceWithdrawalSumDto> com.crm.ib.controller.manage.AgentInfoManageServiceController.ibWithdrawalReport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1791. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/search/ib/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.user.info.UserInfoIbNoDto> com.crm.ib.controller.manage.AgentInfoManageServiceController.managerSearchIbSingle(com.crm.rely.backend.core.entity.user.info.UserInfoIbSearchEntity) throws java.lang.Exception
  1792. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/report/balance/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.balance.AgentBalanceRecordDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.ibBalanceReportExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1793. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/search/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.info.IbInfoDto> com.crm.ib.controller.manage.AgentInfoManageServiceController.managerSearchSingle(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1794. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/update/commission/approval],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto com.crm.ib.controller.manage.AgentInfoManageServiceController.updateCommissionApproval(com.crm.rely.backend.core.entity.user.info.UserInfoUpdateCommissionApprovalEntity) throws java.lang.Exception
  1795. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/ib/search/list/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.info.IbInfoDto>> com.crm.ib.controller.manage.AgentInfoManageServiceController.manageGetListExport(com.crm.rely.backend.core.entity.ib.info.IbInfoSearchListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1796. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/agent/point/change/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.point.AgentPointRecordDto>> com.crm.ib.controller.manage.AgentPointMSController.getList(com.crm.rely.backend.core.entity.ib.point.AgentPointRecordListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1797. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/custom/commission/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.custom.commission.CustomCommissionApplyDto>> com.crm.ib.controller.manage.CustomCommissionApplyMSController.getList(com.crm.rely.backend.core.entity.custom.commission.CustomCommissionApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1798. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/custom/commission/apply/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.CustomCommissionApplyMSController.approve(com.crm.rely.backend.core.entity.custom.commission.CustomCommissionApplyApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1799. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/index/amount],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.daily.DailyDataDto> com.crm.ib.controller.manage.IndexManageServiceController.amount(com.crm.rely.backend.core.entity.ib.daily.DailyDataEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1800. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/index/daily/data],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.daily.DailyDataDto>> com.crm.ib.controller.manage.IndexManageServiceController.dailyData(com.crm.rely.backend.core.entity.ib.daily.DailyDataEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1801. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/index/account],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.index.IndexAmountDto> com.crm.ib.controller.manage.IndexManageServiceController.account(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1802. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/apply/delete],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamApplyManageServiceController.deleteApply(com.crm.rely.backend.core.entity.mam.MamApplyDeleteEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1803. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamApplyDto>> com.crm.ib.controller.manage.MamApplyManageServiceController.applyList(com.crm.rely.backend.core.entity.mam.MamApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1804. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/apply/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamApplyManageServiceController.approveApply(com.crm.rely.backend.core.entity.mam.MamApplyApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1805. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamListDto>> com.crm.ib.controller.manage.MamListManageServiceController.mamList(com.crm.rely.backend.core.entity.mam.MamListSearchEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1806. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/repwd/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamRepwdDto>> com.crm.ib.controller.manage.MamSettingManageServiceController.mamRepwdList(com.crm.rely.backend.core.entity.mam.MamRepwdListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1807. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/pwd/reset/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamPwdResetDto>> com.crm.ib.controller.manage.MamSettingManageServiceController.mamPwdResetList(com.crm.rely.backend.core.entity.mam.MamPwdResetListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1808. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/repwd/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamSettingManageServiceController.mamRepwdApprove(com.crm.rely.backend.core.entity.mam.MamRepwdApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1809. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/pwd/reset/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamSettingManageServiceController.mamPwdResetApprove(com.crm.rely.backend.core.entity.mam.MamPwdResetApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1810. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/leverage/apply/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamSettingManageServiceController.mamLeverageApplyApprove(com.crm.rely.backend.core.entity.mam.MamLeverageApplyApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1811. 22:55:54.516 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/leverage/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamLeverageApplyDto>> com.crm.ib.controller.manage.MamSettingManageServiceController.mamLeverageApplyList(com.crm.rely.backend.core.entity.mam.MamLeverageApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1812. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/subs/apply/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.mam.MamSubsApplyDto>> com.crm.ib.controller.manage.MamSubsApplyMSController.getList(com.crm.rely.backend.core.entity.mam.MamSubsApplyListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1813. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/mam/subs/approve],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.MamSubsApplyMSController.approve(com.crm.rely.backend.core.entity.mam.MamSubsApproveEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1814. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/sys/point/update],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.manage.SysPointMSController.update(com.crm.rely.backend.core.entity.ib.point.SysPointUpdateEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1815. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/sys/point/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.point.SysPointDto>> com.crm.ib.controller.manage.SysPointMSController.getList(com.crm.rely.backend.core.entity.ib.point.SysPointListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1816. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/sys/point/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.point.SysPointDto> com.crm.ib.controller.manage.SysPointMSController.getOne(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1817. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/dw],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeDwDto>, com.crm.rely.backend.core.dto.ib.trade.TradeDwSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeDw(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1818. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/account],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeAccountDto>, com.crm.rely.backend.core.dto.ib.trade.TradeAccountSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeAccount(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1819. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/position],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePositionDto>, com.crm.rely.backend.core.dto.ib.trade.TradePositionSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePosition(com.crm.rely.backend.core.entity.ib.trade.TradePositionListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1820. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/history],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeHistoryDto>, com.crm.rely.backend.core.dto.ib.trade.TradeHistorySumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeHistory(com.crm.rely.backend.core.entity.ib.trade.TradeHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1821. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/symbols],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSymbolDto>, com.crm.rely.backend.core.dto.ib.trade.TradeSymbolSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSymbol(com.crm.rely.backend.core.entity.ib.trade.TradeSymbolListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1822. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/pending],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingDto>, com.crm.rely.backend.core.dto.ib.trade.TradePendingSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePending(com.crm.rely.backend.core.entity.ib.trade.TradePendingListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1823. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/agent/commission],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeCommissionSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeCommission(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1824. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/volume],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeVolumeDto>, com.crm.rely.backend.core.dto.ib.trade.TradeVolumeSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeVolume(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1825. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/dw/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeDwDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeDwExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1826. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/agent/commission/conclude],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeCommissionSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeCommissionConclude(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1827. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/position/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePositionDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePositionExport(com.crm.rely.backend.core.entity.ib.trade.TradePositionListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1828. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/pending/history/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingHistoryDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePendingHistoryExport(com.crm.rely.backend.core.entity.ib.trade.TradePendingHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1829. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/sales/commission],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSalesCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeSalesCommissionSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSalesCommission(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1830. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/profit/ranking/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeProfitRankingDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeProfitRankingExport(com.crm.rely.backend.core.entity.ib.trade.TradeProfitRankingEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1831. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/sales/stock/commission/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSalesStockCommissionDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSalesStockCommissionExport(com.crm.rely.backend.core.entity.ib.trade.TradeSalesStockCommissionEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1832. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/pending/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePendingExport(com.crm.rely.backend.core.entity.ib.trade.TradePendingListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1833. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/agent/commission/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeCommissionExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1834. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/history/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeHistoryDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeHistoryExport(com.crm.rely.backend.core.entity.ib.trade.TradeHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1835. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/sales/commission/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSalesCommissionDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSalesCommissionExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1836. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/pending/history],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingHistoryDto>, com.crm.rely.backend.core.dto.ib.trade.TradePendingHistorySumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradePendingHistory(com.crm.rely.backend.core.entity.ib.trade.TradePendingHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1837. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/volume/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeVolumeDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeVolumeExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1838. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/profit/ranking],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeProfitRankingDto>, com.crm.rely.backend.core.dto.ib.trade.TradeProfitRankingSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeProfitRanking(com.crm.rely.backend.core.entity.ib.trade.TradeProfitRankingEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1839. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/sales/stock/commission],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSalesStockCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeSalesStockCommissionSumDto> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSalesStockCommission(com.crm.rely.backend.core.entity.ib.trade.TradeSalesStockCommissionEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1840. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/account/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeAccountDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeAccountExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1841. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/agent/commission/conclude/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeCommissionConcludeExport(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1842. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/symbols/export],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSymbolDto>> com.crm.ib.controller.manage.TradeReportManageServiceController.tradeSymbolExport(com.crm.rely.backend.core.entity.ib.trade.TradeSymbolListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1843. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/manage/service/trade/sharding/history],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeHistoryDto>, com.crm.rely.backend.core.dto.ib.trade.TradeHistorySumDto> com.crm.ib.controller.manage.TradeReportShardingMSController.tradeHistory(com.crm.rely.backend.core.entity.ib.trade.TradeHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1844. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/update],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.SysPointController.update(com.crm.rely.backend.core.entity.ib.point.SysPointUpdateEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1845. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultWithPagerDto<java.util.List<com.crm.rely.backend.core.dto.ib.point.SysPointDto>> com.crm.ib.controller.SysPointController.getList(com.crm.rely.backend.core.entity.ib.point.SysPointListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1846. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/delete],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.SysPointController.deleteSysPoint(com.crm.rely.backend.core.entity.ib.point.SysPointDeleteEntity,org.apache.catalina.servlet4preview.http.HttpServletRequest,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1847. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/add],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.lang.Object> com.crm.ib.controller.SysPointController.addSysPoint(com.crm.rely.backend.core.entity.ib.point.SysPointAddEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1848. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/points],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.point.SysPointPointsDto> com.crm.ib.controller.SysPointController.points(com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1849. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/sys/point/single],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.ib.point.SysPointDto> com.crm.ib.controller.SysPointController.getOne(com.crm.rely.backend.core.entity.base.SingleLongEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1850. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/profit/ranking/list],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TcgTradeProfitRankingDto>> com.crm.ib.controller.TcgProfitRankingController.getList(com.crm.rely.backend.core.entity.ib.trade.ProfitRankingEntity) throws java.lang.Exception
  1851. 22:55:54.532 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/profit/ranking/chart],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.entity.custom.chart.CustomChartDto>> com.crm.ib.controller.TcgProfitRankingController.getChart(com.crm.rely.backend.core.entity.ib.trade.ProfitRankingEntity) throws java.lang.Exception
  1852. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/dw],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeDwDto>, com.crm.rely.backend.core.dto.ib.trade.TradeDwSumDto> com.crm.ib.controller.TradeReportController.tradeDw(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1853. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/account],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeAccountDto>, com.crm.rely.backend.core.dto.ib.trade.TradeAccountSumDto> com.crm.ib.controller.TradeReportController.tradeAccount(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1854. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/pending],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingDto>, com.crm.rely.backend.core.dto.ib.trade.TradePendingSumDto> com.crm.ib.controller.TradeReportController.tradePosition(com.crm.rely.backend.core.entity.ib.trade.TradePendingListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1855. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/pending/history],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePendingHistoryDto>, com.crm.rely.backend.core.dto.ib.trade.TradePendingHistorySumDto> com.crm.ib.controller.TradeReportController.tradePosition(com.crm.rely.backend.core.entity.ib.trade.TradePendingHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1856. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/position],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradePositionDto>, com.crm.rely.backend.core.dto.ib.trade.TradePositionSumDto> com.crm.ib.controller.TradeReportController.tradePosition(com.crm.rely.backend.core.entity.ib.trade.TradePositionListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1857. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/history],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeHistoryDto>, com.crm.rely.backend.core.dto.ib.trade.TradeHistorySumDto> com.crm.ib.controller.TradeReportController.tradeHistory(com.crm.rely.backend.core.entity.ib.trade.TradeHistoryListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1858. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/symbols],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSymbolDto>, com.crm.rely.backend.core.dto.ib.trade.TradeSymbolSumDto> com.crm.ib.controller.TradeReportController.tradeSymbol(com.crm.rely.backend.core.entity.ib.trade.TradeSymbolListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1859. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/agent/commission],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeCommissionSumDto> com.crm.ib.controller.TradeReportController.tradeCommission(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1860. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/agent/commission/conclude],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeCommissionSumDto> com.crm.ib.controller.TradeReportController.tradeCommissionConclude(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1861. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/trade/sales/commission],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseReportResultDto<java.util.List<com.crm.rely.backend.core.dto.ib.trade.TradeSalesCommissionDto>, com.crm.rely.backend.core.dto.ib.trade.TradeSalesCommissionSumDto> com.crm.ib.controller.TradeReportController.tradeSalesCommission(com.crm.rely.backend.core.entity.base.BaseIbReportListEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1862. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/web/activity/dropdown],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<java.util.List<com.crm.rely.backend.core.dto.web.activity.WebActivityDropdownDto>> com.crm.ib.controller.WebActivityController.dropdown(com.crm.rely.backend.core.entity.web.activity.WebActivityDropdownEntity,com.crm.rely.backend.core.entity.custom.info.InfoEntity) throws java.lang.Exception
  1863. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
  1864. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
  1865. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/file/callback],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto com.crm.login.rely.backend.controller.UploadController.callback(com.crm.rely.backend.core.entity.oss.OssCallbackEntity,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception
  1866. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/file/sign],methods=[POST]}" onto public com.crm.rely.backend.core.dto.base.BaseResultDto<com.crm.rely.backend.core.dto.oss.OssSignDto> com.crm.login.rely.backend.controller.UploadController.sign(com.crm.rely.backend.core.entity.oss.OssSignEntity,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception
  1867. 22:55:54.547 [main] INFO o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped "{[/error],methods=[GET]}" onto public java.lang.Object com.crm.rely.backend.controller.NotFoundExceptionController.error(javax.servlet.http.HttpServletResponse) throws java.lang.Exception
  1868. 22:55:54.891 [main] INFO o.s.w.s.h.SimpleUrlHandlerMapping - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  1869. 22:55:54.891 [main] INFO o.s.w.s.h.SimpleUrlHandlerMapping - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  1870. 22:55:54.954 [main] INFO o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Detected @ExceptionHandler methods in com.crm.rely.backend.aspect.ControllerExceptionAdvice
  1871. 22:55:55.079 [main] INFO o.s.w.s.h.SimpleUrlHandlerMapping - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  1872. 22:55:55.860 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'scheduledExecutorService'
  1873. 22:55:55.969 [main] INFO o.s.s.c.ThreadPoolTaskExecutor - Initializing ExecutorService 'taskExecutor'
  1874. 22:55:59.188 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Registering beans for JMX exposure on startup
  1875. 22:55:59.188 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Bean with name 'dataSource' has been autodetected for JMX exposure
  1876. 22:55:59.204 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Bean with name 'environmentManager' has been autodetected for JMX exposure
  1877. 22:55:59.204 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Bean with name 'configurationPropertiesRebinder' has been autodetected for JMX exposure
  1878. 22:55:59.204 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Bean with name 'refreshScope' has been autodetected for JMX exposure
  1879. 22:55:59.204 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Located managed bean 'environmentManager': registering with JMX server as MBean [org.springframework.cloud.context.environment:name=environmentManager,type=EnvironmentManager]
  1880. 22:55:59.235 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Located managed bean 'refreshScope': registering with JMX server as MBean [org.springframework.cloud.context.scope.refresh:name=refreshScope,type=RefreshScope]
  1881. 22:55:59.251 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Located managed bean 'configurationPropertiesRebinder': registering with JMX server as MBean [org.springframework.cloud.context.properties:name=configurationPropertiesRebinder,context=55d56113,type=ConfigurationPropertiesRebinder]
  1882. 22:55:59.251 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Located MBean 'dataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=dataSource,type=DruidDataSource]
  1883. 22:55:59.469 [main] INFO o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 0
  1884. 22:55:59.485 [main] INFO o.s.c.n.eureka.InstanceInfoFactory - Setting initial instance status as: STARTING
  1885. 22:55:59.594 [main] INFO c.netflix.discovery.DiscoveryClient - Initializing Eureka in region us-east-1
  1886. 22:55:59.923 [main] INFO c.n.d.p.DiscoveryJerseyProvider - Using JSON encoding codec LegacyJacksonJson
  1887. 22:55:59.923 [main] INFO c.n.d.p.DiscoveryJerseyProvider - Using JSON decoding codec LegacyJacksonJson
  1888. 22:56:00.157 [main] INFO c.n.d.p.DiscoveryJerseyProvider - Using XML encoding codec XStreamXml
  1889. 22:56:00.157 [main] INFO c.n.d.p.DiscoveryJerseyProvider - Using XML decoding codec XStreamXml
  1890. 22:56:00.469 [main] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1891. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Disable delta property : false
  1892. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Single vip registry refresh property : null
  1893. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Force full registry fetch : false
  1894. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Application is null : false
  1895. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Registered Applications size is zero : true
  1896. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Application version is -1: true
  1897. 22:56:00.516 [main] INFO c.netflix.discovery.DiscoveryClient - Getting all instance registry info from the eureka server
  1898. 22:56:00.782 [main] INFO c.netflix.discovery.DiscoveryClient - The response status is 200
  1899. 22:56:00.782 [main] INFO c.netflix.discovery.DiscoveryClient - Starting heartbeat executor: renew interval is: 30
  1900. 22:56:00.782 [main] INFO c.n.discovery.InstanceInfoReplicator - InstanceInfoReplicator onDemand update allowed rate per min is 4
  1901. 22:56:00.782 [main] INFO c.netflix.discovery.DiscoveryClient - Discovery Client initialized at timestamp 1657464960782 with initial instances count: 7
  1902. 22:56:00.969 [main] INFO o.s.c.n.e.s.EurekaServiceRegistry - Registering application ib-service with eureka with status UP
  1903. 22:56:00.969 [main] INFO c.netflix.discovery.DiscoveryClient - Saw local status change event StatusChangeEvent [timestamp=1657464960969, current=UP, previous=STARTING]
  1904. 22:56:00.969 [DiscoveryClient-InstanceInfoReplicator-0] INFO c.netflix.discovery.DiscoveryClient - DiscoveryClient_IB-SERVICE/ib-service:103.148.58.88:9000: registering service...
  1905. 22:56:00.969 [main] INFO o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147483647
  1906. 22:56:01.016 [DiscoveryClient-InstanceInfoReplicator-0] INFO c.netflix.discovery.DiscoveryClient - DiscoveryClient_IB-SERVICE/ib-service:103.148.58.88:9000 - registration status: 204
  1907. 22:56:01.094 [main] INFO o.s.b.c.e.t.TomcatEmbeddedServletContainer - Tomcat started on port(s): 9000 (http)
  1908. 22:56:01.094 [main] INFO o.s.c.n.e.s.EurekaAutoServiceRegistration - Updating port to 9000
  1909. 22:56:01.094 [main] INFO com.crm.ib.IbApplication - Started IbApplication in 34.062 seconds (JVM running for 38.046)
  1910. 22:58:09.008 [http-nio-9000-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring FrameworkServlet 'dispatcherServlet'
  1911. 22:58:09.008 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - FrameworkServlet 'dispatcherServlet': initialization started
  1912. 22:58:09.086 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - FrameworkServlet 'dispatcherServlet': initialization completed in 78 ms
  1913. 22:58:14.086 [http-nio-9000-exec-5] INFO o.h.h.i.QueryTranslatorFactoryInitiator - HHH000397: Using ASTQueryTranslatorFactory
  1914. 22:58:14.258 [http-nio-9000-exec-5] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1915. 22:58:14.258 [http-nio-9000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  1916. 22:58:14.321 [http-nio-9000-exec-6] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.custom_id=?
  1917. 22:58:14.321 [http-nio-9000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [6]
  1918. 22:58:14.868 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1919. 22:58:14.868 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1920. 22:58:14.899 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.pid=?
  1921. 22:58:14.899 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1922. 22:58:14.899 [http-nio-9000-exec-9] DEBUG org.hibernate.SQL - select count(custominfo0_.id) as col_0_0_ from custom_info custominfo0_ where custominfo0_.agent_id=?
  1923. 22:58:14.899 [http-nio-9000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1924. 22:58:16.555 [http-nio-9000-exec-1] 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=?
  1925. 22:58:16.571 [http-nio-9000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1926. 22:58:28.258 [http-nio-9000-exec-8] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1927. 22:58:28.258 [http-nio-9000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1928. 22:58:36.977 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select count(syspointta0_.id) as col_0_0_ from sys_point syspointta0_ where syspointta0_.name=?
  1929. 22:58:36.977 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123123]
  1930. 22:58:36.977 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - select agentpoint0_.id as id1_21_, agentpoint0_.add_ip as add_ip2_21_, agentpoint0_.add_time as add_time3_21_, agentpoint0_.add_user as add_user4_21_, agentpoint0_.modify_ip as modify_i5_21_, agentpoint0_.modify_time as modify_t6_21_, agentpoint0_.modify_user as modify_u7_21_, agentpoint0_.note as note8_21_, agentpoint0_.agent_id as agent_id9_21_, agentpoint0_.classic_cfd as classic10_21_, agentpoint0_.classic_fx as classic11_21_, agentpoint0_.com_point_one as com_poi12_21_, agentpoint0_.com_point_two as com_poi13_21_, agentpoint0_.instant_fx as instant14_21_, agentpoint0_.instant_index as instant15_21_, agentpoint0_.instant_metal as instant16_21_, agentpoint0_.percent as percent17_21_, agentpoint0_.type as type18_21_, agentpoint0_.valid_time as valid_t19_21_, agentpoint0_.vip_cfd as vip_cfd20_21_, agentpoint0_.vip_fx as vip_fx21_21_ from agent_point agentpoint0_ where agentpoint0_.agent_id=? limit ?
  1931. 22:58:36.977 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1932. 22:58:37.009 [http-nio-9000-exec-10] DEBUG org.hibernate.SQL - insert into sys_point (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, classic_cfd, classic_fx, com_point_one, com_point_two, en_name, instant_fx, instant_index, instant_metal, main, name, type, vip_cfd, vip_fx) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1933. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [114.101.192.194]
  1934. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sun Jul 10 22:58:36 CST 2022]
  1935. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [6]
  1936. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1937. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1938. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1939. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1940. 22:58:37.009 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20095]
  1941. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [2.0]
  1942. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [3.0]
  1943. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [0.0]
  1944. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [1.0]
  1945. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [null]
  1946. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [FLOAT] - [0.0]
  1947. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [0.0]
  1948. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [0.0]
  1949. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [null]
  1950. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [123123]
  1951. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1952. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [FLOAT] - [0.3]
  1953. 22:58:37.024 [http-nio-9000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [FLOAT] - [0.2]
  1954. 22:58:43.134 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select syspointta0_.id as id1_83_0_, syspointta0_.add_ip as add_ip2_83_0_, syspointta0_.add_time as add_time3_83_0_, syspointta0_.add_user as add_user4_83_0_, syspointta0_.modify_ip as modify_i5_83_0_, syspointta0_.modify_time as modify_t6_83_0_, syspointta0_.modify_user as modify_u7_83_0_, syspointta0_.note as note8_83_0_, syspointta0_.agent_id as agent_id9_83_0_, syspointta0_.classic_cfd as classic10_83_0_, syspointta0_.classic_fx as classic11_83_0_, syspointta0_.com_point_one as com_poi12_83_0_, syspointta0_.com_point_two as com_poi13_83_0_, syspointta0_.en_name as en_name14_83_0_, syspointta0_.instant_fx as instant15_83_0_, syspointta0_.instant_index as instant16_83_0_, syspointta0_.instant_metal as instant17_83_0_, syspointta0_.main as main18_83_0_, syspointta0_.name as name19_83_0_, syspointta0_.type as type20_83_0_, syspointta0_.vip_cfd as vip_cfd21_83_0_, syspointta0_.vip_fx as vip_fx22_83_0_ from sys_point syspointta0_ where syspointta0_.id=?
  1955. 22:58:43.149 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [362]
  1956. 22:58:43.149 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - select count(userinfota0_.id) as col_0_0_ from user_info userinfota0_ where userinfota0_.point_id=?
  1957. 22:58:43.149 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [362]
  1958. 22:58:43.181 [http-nio-9000-exec-4] DEBUG org.hibernate.SQL - delete from sys_point where id=?
  1959. 22:58:43.181 [http-nio-9000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [362]
  1960. 23:01:00.544 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1961. 23:06:00.565 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1962. 23:11:00.589 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1963. 23:16:00.615 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1964. 23:21:00.641 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1965. 23:26:00.659 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1966. 23:31:00.675 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1967. 23:36:00.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1968. 23:41:00.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1969. 23:46:00.745 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1970. 23:51:00.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1971. 23:56:00.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration