logback.2023-05-05.log 340 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. 00:04:28.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:09:28.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:14:28.584 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:19:00.634 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  5. 00:19:00.634 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  6. 00:19:00.713 [scheduled-thread-8] DEBUG org.hibernate.SQL - insert into control_panel_statistics (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, commission_amount, date, deposit_amount, transfer_amount, withdraw_amount) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  7. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  8. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri May 05 00:19:00 AST 2023]
  9. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
  10. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  11. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  12. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  13. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  14. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
  15. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  16. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [27200.0000000000]
  17. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [0E-10]
  18. 00:19:00.713 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [1000.0000000000]
  19. 00:19:28.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 00:24:28.620 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 00:29:28.639 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 00:34:28.654 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 00:39:28.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 00:44:28.690 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 00:49:28.715 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 00:54:28.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 00:59:28.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 01:04:28.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 01:09:28.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 01:14:28.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 01:19:00.909 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  32. 01:19:00.909 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  33. 01:19:28.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 01:24:28.850 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 01:29:28.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 01:34:28.885 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 01:39:28.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 01:44:28.927 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 01:49:28.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 01:54:28.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 01:59:28.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 02:04:29.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 02:09:29.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  44. 02:14:29.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  45. 02:19:01.087 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  46. 02:19:01.087 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  47. 02:19:29.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  48. 02:24:29.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  49. 02:29:29.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  50. 02:34:29.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  51. 02:39:29.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  52. 02:44:29.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  53. 02:49:29.203 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  54. 02:54:29.225 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  55. 02:59:29.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  56. 03:04:29.267 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  57. 03:09:29.282 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  58. 03:13:03.847 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  59. 03:13:03.847 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  60. 03:13:03.847 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [82962f358f40f87de537bea036af6857]
  61. 03:13:03.847 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  62. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  63. 03:13:03.863 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  64. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  65. 03:13:03.863 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  66. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  67. 03:13:03.863 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  68. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  69. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  70. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  71. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  72. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  73. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  74. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  75. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  76. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  77. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  78. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  79. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  80. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  81. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  82. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  83. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  84. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  85. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  86. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  87. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  88. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  89. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  90. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 03:13:03 AST 2023]
  91. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  92. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  93. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  94. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  95. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [82962f358f40f87de537bea036af6857]
  96. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  97. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  98. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  99. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  100. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020103]
  101. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  102. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  103. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  104. 03:13:03.863 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  105. 03:14:29.301 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  106. 03:19:01.259 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  107. 03:19:01.259 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  108. 03:19:29.322 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  109. 03:24:29.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  110. 03:29:29.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  111. 03:34:29.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  112. 03:34:50.476 [http-nio-8500-exec-3] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  113. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  114. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  115. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  116. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  117. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  118. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  119. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  120. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  121. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  122. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  123. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  124. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  125. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  126. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  127. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  128. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  129. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  130. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  131. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  132. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  133. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  134. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  135. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  136. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  137. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  138. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  139. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  140. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  141. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  142. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  143. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  144. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  145. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  146. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  147. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  148. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  149. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  150. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  151. at java.lang.Thread.run(Unknown Source)
  152. 03:34:50.476 [http-nio-8500-exec-3] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  153. com.crm.rely.backend.exception.LoginException: invalid
  154. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  155. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  156. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  157. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  158. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  159. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  160. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  161. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  162. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  163. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  164. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  165. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  166. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  167. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  168. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  169. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  170. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  171. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  172. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  173. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  174. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  175. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  176. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  177. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  178. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  179. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  180. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  181. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  182. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  183. at java.lang.Thread.run(Unknown Source)
  184. 03:34:50.476 [http-nio-8500-exec-3] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  185. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  186. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  187. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  188. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  189. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  190. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  191. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  192. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  193. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  194. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  195. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  196. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  197. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  198. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  199. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  200. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  201. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  202. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  203. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  204. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  205. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  206. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  207. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  208. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  209. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  210. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  211. at java.lang.Thread.run(Unknown Source)
  212. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  213. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  214. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  215. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  216. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  217. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  218. ... 25 common frames omitted
  219. 03:38:22.174 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  220. 03:38:22.174 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  221. 03:38:22.174 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  222. 03:38:22.189 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  223. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  224. 03:38:22.189 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  225. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  226. 03:38:22.189 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  227. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  228. 03:38:22.189 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  229. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  230. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  231. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  232. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  233. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  234. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  235. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  236. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  237. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  238. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  239. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  240. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  241. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  242. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  243. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  244. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  245. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  246. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  247. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  248. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  249. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  250. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  251. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 03:38:22 AST 2023]
  252. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  253. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  254. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  255. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  256. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  257. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  258. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  259. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  260. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  261. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  262. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  263. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  264. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  265. 03:38:22.189 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  266. 03:38:49.893 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  267. 03:39:29.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  268. 03:42:30.306 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  269. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
  270. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  271. 03:42:30.306 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  272. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  273. 03:42:30.306 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  274. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  275. 03:42:30.306 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  276. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  277. 03:42:30.306 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  278. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  279. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  280. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  281. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
  282. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
  283. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  284. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  285. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  286. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  287. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  288. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  289. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  290. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  291. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  292. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
  293. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  294. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  295. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  296. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  297. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  298. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [山东省青岛市 电信]
  299. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [123.168.92.200]
  300. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 03:42:30 AST 2023]
  301. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  302. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  303. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  304. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  305. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  306. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [1]
  307. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  308. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  309. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  310. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  311. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  312. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
  313. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  314. 03:42:30.306 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  315. 03:44:29.432 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  316. 03:44:39.260 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  317. 03:44:39.260 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  318. 03:44:41.323 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  319. 03:44:41.323 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  320. 03:46:57.872 [http-nio-8500-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 ? for update
  321. 03:46:57.872 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [287]
  322. 03:46:57.872 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  323. 03:46:57.872 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [287]
  324. 03:46:57.872 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  325. 03:46:57.872 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"123.168.92.200","addTime":1683247617872,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500299","V_NAME_V":"峰刚 张","V_EMAIL_V":"2503110133@qq.com","V_DATE_TIME_V":"2023-05-05 03:46:57"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"2503110133@qq.com"}
  326. 03:46:57.887 [http-nio-8500-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=?
  327. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  328. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 03:40:13.0]
  329. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [287]
  330. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.92.200]
  331. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri May 05 03:46:57 AST 2023]
  332. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  333. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  334. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  335. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Fri May 05 03:46:57 AST 2023]
  336. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  337. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  338. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省平度市白沙河街道办事处代戈庄村134号@#山东省平度市白沙河街道办事处代戈庄村134号]
  339. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  340. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  341. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-05-05 03:44:27.0]
  342. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  343. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-08-31 00:00:00.0]
  344. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500299]
  345. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  346. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  347. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  348. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  349. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  350. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  351. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  352. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2503110133@qq.com]
  353. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [峰刚]
  354. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  355. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  356. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  357. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  358. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  359. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370283200109012219]
  360. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  361. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [山东省青岛市 电信]
  362. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [123.168.92.200]
  363. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  364. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2023-05-05 03:40:13.0]
  365. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  366. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [FengGang Zhang]
  367. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  368. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [91497c77915a36f348a0203cb20786f0]
  369. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15275265759]
  370. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  371. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  372. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  373. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  374. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [287]
  375. 03:46:57.887 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  376. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  377. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 03:44:17.0]
  378. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [287]
  379. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  380. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  381. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  382. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  383. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  384. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [287]
  385. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/287/info/855915d501184b5e970fa550b2b1a474.jpeg]
  386. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  387. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  388. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [740]
  389. 03:46:57.887 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  390. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  391. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 03:44:17.0]
  392. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [287]
  393. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  394. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  395. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  396. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  397. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  398. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [287]
  399. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/287/info/2e6c7bffee9c4649919c8eb1fd043886.jpeg]
  400. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  401. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  402. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [741]
  403. 03:46:57.887 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  404. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  405. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 03:44:17.0]
  406. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [287]
  407. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  408. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  409. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  410. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  411. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  412. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [287]
  413. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/287/info/199fba83277040ae8c429851d0f42e87.jpeg]
  414. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  415. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  416. 03:46:57.887 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [742]
  417. 03:49:29.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  418. 03:50:15.264 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  419. 03:50:15.264 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  420. 03:52:00.084 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  421. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
  422. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  423. 03:52:00.084 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  424. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  425. 03:52:00.084 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  426. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  427. 03:52:00.084 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  428. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  429. 03:52:00.084 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  430. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  431. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
  432. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  433. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  434. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  435. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  436. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  437. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  438. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  439. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  440. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
  441. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  442. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  443. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  444. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
  445. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  446. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  447. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  448. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
  449. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  450. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  451. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  452. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 03:52:00 AST 2023]
  453. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  454. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  455. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [楠]
  456. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  457. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  458. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  459. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  460. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  461. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
  462. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020102]
  463. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  464. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
  465. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  466. 03:52:00.084 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
  467. 03:54:29.479 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  468. 03:59:17.482 [http-nio-8500-exec-5] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  469. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  470. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  471. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  472. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  473. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  474. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  475. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  476. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  477. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  478. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  479. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  480. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  481. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  482. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  483. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  484. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  485. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  486. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  487. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  488. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  489. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  490. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  491. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  492. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  493. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  494. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  495. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  496. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  497. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  498. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  499. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  500. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  501. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  502. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  503. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  504. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  505. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  506. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  507. at java.lang.Thread.run(Unknown Source)
  508. 03:59:17.482 [http-nio-8500-exec-5] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  509. com.crm.rely.backend.exception.LoginException: invalid
  510. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  511. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  512. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  513. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  514. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  515. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  516. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  517. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  518. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  519. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  520. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  521. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  522. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  523. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  524. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  525. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  526. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  527. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  528. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  529. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  530. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  531. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  532. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  533. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  534. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  535. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  536. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  537. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  538. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  539. at java.lang.Thread.run(Unknown Source)
  540. 03:59:17.482 [http-nio-8500-exec-5] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  541. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  542. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  543. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  544. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  545. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  546. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  547. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  548. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  549. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  550. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  551. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  552. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  553. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  554. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  555. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  556. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  557. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  558. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  559. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  560. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  561. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  562. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  563. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  564. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  565. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  566. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  567. at java.lang.Thread.run(Unknown Source)
  568. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  569. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  570. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  571. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  572. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  573. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  574. ... 25 common frames omitted
  575. 03:59:29.498 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  576. 04:04:29.517 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  577. 04:09:29.538 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  578. 04:14:29.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  579. 04:19:01.436 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  580. 04:19:01.436 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  581. 04:19:29.577 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  582. 04:24:29.598 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  583. 04:29:29.619 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  584. 04:29:50.729 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  585. 04:29:50.729 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  586. 04:30:01.245 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  587. 04:30:11.010 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  588. 04:30:11.026 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  589. 04:31:50.326 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as col_0_0_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  590. 04:31:50.326 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  591. 04:31:50.341 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.username=? limit ?
  592. 04:31:50.341 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1483717776@qq.com]
  593. 04:31:57.732 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as col_0_0_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  594. 04:31:57.732 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  595. 04:31:57.748 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.username=? limit ?
  596. 04:31:57.748 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1483717776@qq.com]
  597. 04:34:29.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  598. 04:39:29.665 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  599. 04:40:34.432 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  600. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  601. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  602. 04:40:34.432 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  603. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  604. 04:40:34.432 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  605. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  606. 04:40:34.432 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  607. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  608. 04:40:34.432 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  609. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  610. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  611. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  612. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  613. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  614. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  615. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  616. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  617. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  618. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  619. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  620. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  621. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  622. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  623. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  624. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  625. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  626. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  627. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  628. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  629. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  630. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  631. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 04:40:34 AST 2023]
  632. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  633. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  634. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  635. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  636. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  637. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  638. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  639. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  640. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  641. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  642. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  643. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  644. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  645. 04:40:34.432 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  646. 04:40:43.104 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  647. 04:44:29.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  648. 04:49:29.707 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  649. 04:49:45.691 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  650. 04:49:45.691 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  651. 04:54:29.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  652. 04:59:29.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  653. 05:04:29.770 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  654. 05:09:29.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  655. 05:14:29.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  656. 05:19:01.610 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  657. 05:19:01.610 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  658. 05:19:29.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  659. 05:24:29.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  660. 05:29:29.877 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  661. 05:34:29.890 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  662. 05:39:25.145 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  663. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  664. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  665. 05:39:25.145 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  666. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  667. 05:39:25.145 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  668. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  669. 05:39:25.145 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  670. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  671. 05:39:25.145 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  672. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  673. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  674. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  675. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  676. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  677. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  678. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  679. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  680. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  681. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  682. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  683. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  684. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  685. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  686. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  687. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  688. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  689. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  690. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  691. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  692. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  693. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  694. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 05:39:25 AST 2023]
  695. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  696. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  697. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  698. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  699. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  700. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  701. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  702. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  703. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  704. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  705. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  706. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  707. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  708. 05:39:25.145 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  709. 05:39:29.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  710. 05:43:00.350 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  711. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
  712. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  713. 05:43:00.366 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  714. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  715. 05:43:00.366 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  716. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  717. 05:43:00.366 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  718. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  719. 05:43:00.366 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  720. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  721. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  722. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  723. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
  724. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
  725. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  726. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  727. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  728. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  729. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  730. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  731. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  732. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  733. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  734. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
  735. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  736. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  737. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  738. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  739. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  740. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [山东省青岛市 电信]
  741. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [123.168.92.200]
  742. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 05:43:00 AST 2023]
  743. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  744. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  745. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  746. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  747. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  748. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [1]
  749. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  750. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  751. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  752. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  753. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  754. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
  755. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  756. 05:43:00.366 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  757. 05:44:29.929 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  758. 05:44:57.367 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  759. 05:49:29.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  760. 05:54:29.965 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  761. 05:59:29.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  762. 06:04:30.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  763. 06:09:30.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  764. 06:11:07.265 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  765. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  766. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [82962f358f40f87de537bea036af6857]
  767. 06:11:07.265 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  768. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  769. 06:11:07.265 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  770. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  771. 06:11:07.265 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  772. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  773. 06:11:07.265 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  774. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  775. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  776. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  777. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  778. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  779. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  780. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  781. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  782. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  783. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  784. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  785. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  786. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  787. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  788. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  789. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  790. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  791. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  792. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  793. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  794. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  795. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  796. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 06:11:07 AST 2023]
  797. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  798. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  799. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  800. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  801. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [82962f358f40f87de537bea036af6857]
  802. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  803. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  804. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  805. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  806. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020103]
  807. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  808. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  809. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  810. 06:11:07.265 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  811. 06:14:30.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  812. 06:19:01.774 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  813. 06:19:01.774 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  814. 06:19:30.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  815. 06:24:30.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  816. 06:29:30.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  817. 06:34:30.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  818. 06:39:30.180 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  819. 06:44:30.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  820. 06:49:30.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  821. 06:54:30.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  822. 06:59:30.267 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  823. 07:04:30.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  824. 07:09:30.300 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  825. 07:14:30.323 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  826. 07:19:01.952 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  827. 07:19:01.952 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  828. 07:19:30.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  829. 07:24:30.364 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  830. 07:29:30.384 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  831. 07:34:30.404 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  832. 07:39:30.428 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  833. 07:44:30.448 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  834. 07:49:30.467 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  835. 07:54:30.489 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  836. 07:59:30.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  837. 08:04:30.532 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  838. 08:07:25.437 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  839. 08:07:25.437 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  840. 08:07:25.437 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  841. 08:07:25.437 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  842. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  843. 08:07:25.453 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  844. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  845. 08:07:25.453 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  846. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  847. 08:07:25.453 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  848. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  849. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  850. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  851. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  852. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  853. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  854. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  855. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  856. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  857. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  858. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  859. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  860. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  861. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  862. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  863. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  864. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  865. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  866. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  867. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  868. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  869. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  870. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 08:07:25 AST 2023]
  871. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  872. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  873. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  874. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  875. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  876. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  877. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  878. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  879. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  880. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  881. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  882. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  883. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  884. 08:07:25.453 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  885. 08:07:31.937 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  886. 08:09:30.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  887. 08:14:30.580 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  888. 08:19:02.130 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  889. 08:19:02.130 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  890. 08:19:30.599 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  891. 08:24:30.613 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  892. 08:28:51.993 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where 1=1 limit ?
  893. 08:28:54.321 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id is not null
  894. 08:28:54.415 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_
  895. 08:29:30.634 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  896. 08:29:51.072 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as col_0_0_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  897. 08:29:51.072 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  898. 08:29:51.072 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.username=? limit ?
  899. 08:29:51.072 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18531173143@163.com]
  900. 08:29:51.072 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.email=? limit ?
  901. 08:29:51.072 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18531173143@163.com]
  902. 08:29:51.103 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_0_, userroleta0_.add_ip as add_ip2_98_0_, userroleta0_.add_time as add_time3_98_0_, userroleta0_.add_user as add_user4_98_0_, userroleta0_.modify_ip as modify_i5_98_0_, userroleta0_.modify_time as modify_t6_98_0_, userroleta0_.modify_user as modify_u7_98_0_, userroleta0_.note as note8_98_0_, userroleta0_.code as code9_98_0_, userroleta0_.content as content10_98_0_, userroleta0_.department_id as departm11_98_0_, userroleta0_.name as name12_98_0_, userroleta0_.number as number13_98_0_ from user_role userroleta0_ where userroleta0_.id=?
  903. 08:29:51.103 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  904. 08:29:51.103 [http-nio-8500-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=?
  905. 08:29:51.119 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20114]
  906. 08:29:51.135 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.pid=?
  907. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20114]
  908. 08:29:51.135 [http-nio-8500-exec-9] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  909. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  910. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri May 05 08:29:51 AST 2023]
  911. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  912. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  913. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  914. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  915. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  916. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  917. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  918. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  919. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500300]
  920. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  921. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  922. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  923. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18531173143@163.com]
  924. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  925. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  926. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  927. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0123]
  928. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  929. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  930. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  931. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  932. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  933. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  934. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [天硕]
  935. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  936. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [4deba91a64e83dd71efd580e2f7a18b3]
  937. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  938. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  939. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  940. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  941. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020301]
  942. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  943. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18531173143@163.com]
  944. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  945. 08:29:51.135 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ? for update
  946. 08:29:51.135 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  947. 08:29:51.150 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_role set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, department_id=?, name=?, number=? where id=?
  948. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  949. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 06:57:44.0]
  950. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  951. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.92.200]
  952. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri May 05 08:29:51 AST 2023]
  953. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  954. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  955. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ROLE_SALE]
  956. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  957. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  958. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [销售]
  959. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  960. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1032]
  961. 08:29:51.150 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  962. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  963. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri May 05 08:29:51 AST 2023]
  964. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  965. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  966. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  967. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  968. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  969. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  970. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  971. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  972. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500300]
  973. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  974. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  975. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  976. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18531173143@163.com]
  977. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  978. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  979. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  980. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0123]
  981. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  982. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  983. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  984. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  985. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  986. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  987. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [天硕]
  988. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  989. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [4deba91a64e83dd71efd580e2f7a18b3]
  990. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  991. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  992. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  993. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20115]
  994. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020301]
  995. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  996. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18531173143@163.com]
  997. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  998. 08:29:51.150 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20115]
  999. 08:31:10.089 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as col_0_0_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1000. 08:31:10.089 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1001. 08:31:10.104 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.username=? limit ?
  1002. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  1003. 08:31:10.104 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as col_0_0_ from user_info userinfota0_ where userinfota0_.email=? limit ?
  1004. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  1005. 08:31:10.104 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_0_, userroleta0_.add_ip as add_ip2_98_0_, userroleta0_.add_time as add_time3_98_0_, userroleta0_.add_user as add_user4_98_0_, userroleta0_.modify_ip as modify_i5_98_0_, userroleta0_.modify_time as modify_t6_98_0_, userroleta0_.modify_user as modify_u7_98_0_, userroleta0_.note as note8_98_0_, userroleta0_.code as code9_98_0_, userroleta0_.content as content10_98_0_, userroleta0_.department_id as departm11_98_0_, userroleta0_.name as name12_98_0_, userroleta0_.number as number13_98_0_ from user_role userroleta0_ where userroleta0_.id=?
  1006. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1007. 08:31:10.104 [http-nio-8500-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=?
  1008. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20114]
  1009. 08:31:10.104 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.pid=?
  1010. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20114]
  1011. 08:31:10.104 [http-nio-8500-exec-7] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1012. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  1013. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri May 05 08:31:10 AST 2023]
  1014. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1015. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1016. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1017. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1018. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1019. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1020. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1021. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1022. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  1023. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1024. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1025. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1026. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  1027. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1028. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1029. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1030. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  1031. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1032. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1033. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  1034. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  1035. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1036. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1037. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  1038. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  1039. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  1040. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  1041. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1042. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1043. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1044. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020302]
  1045. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1046. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  1047. 08:31:10.104 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1048. 08:31:10.120 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ? for update
  1049. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1050. 08:31:10.120 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update user_role set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, department_id=?, name=?, number=? where id=?
  1051. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1052. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 06:57:44.0]
  1053. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1054. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.92.200]
  1055. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri May 05 08:31:10 AST 2023]
  1056. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1057. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1058. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ROLE_SALE]
  1059. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1060. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
  1061. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [销售]
  1062. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1063. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1032]
  1064. 08:31:10.120 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1065. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  1066. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri May 05 08:31:10 AST 2023]
  1067. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1068. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1069. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1070. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1071. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1072. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1073. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1074. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1075. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  1076. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1077. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1078. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1079. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  1080. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1081. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1082. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1083. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  1084. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1085. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1086. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  1087. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [null]
  1088. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1089. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1090. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  1091. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  1092. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  1093. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  1094. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1095. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1096. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  1097. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020302]
  1098. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1099. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  1100. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1101. 08:31:10.120 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  1102. 08:34:30.654 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1103. 08:39:30.668 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1104. 08:44:30.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1105. 08:48:50.083 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  1106. 08:48:50.083 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18531173143@163.com]
  1107. 08:48:50.083 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [4deba91a64e83dd71efd580e2f7a18b3]
  1108. 08:48:50.099 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1109. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1110. 08:48:50.099 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1111. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1112. 08:48:50.099 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1113. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1114. 08:48:50.099 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1115. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  1116. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:29:51.0]
  1117. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1118. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1119. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1120. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1121. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1122. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1123. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1124. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1125. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500300]
  1126. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1127. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1128. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1129. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18531173143@163.com]
  1130. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1131. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1132. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1133. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0123]
  1134. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1135. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [山东省青岛市 电信]
  1136. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [123.168.92.200]
  1137. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 08:48:50 AST 2023]
  1138. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1139. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1140. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [天硕]
  1141. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  1142. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [4deba91a64e83dd71efd580e2f7a18b3]
  1143. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  1144. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1145. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1146. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20115]
  1147. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020301]
  1148. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1149. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18531173143@163.com]
  1150. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1151. 08:48:50.099 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20115]
  1152. 08:49:30.709 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1153. 08:52:03.497 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  1154. 08:52:03.497 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1155. 08:52:03.497 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1156. 08:52:03.497 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1157. 08:52:03.497 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1158. 08:52:03.497 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1159. 08:52:03.497 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1160. 08:52:03.497 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1161. 08:52:03.497 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1162. 08:52:03.497 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1163. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1164. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1165. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1166. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1167. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1168. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1169. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1170. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1171. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1172. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1173. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1174. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1175. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1176. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1177. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1178. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1179. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1180. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1181. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1182. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1183. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1184. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1185. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 08:52:03 AST 2023]
  1186. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1187. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1188. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1189. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1190. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1191. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1192. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1193. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1194. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1195. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1196. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1197. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1198. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1199. 08:52:03.513 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1200. 08:52:09.935 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1201. 08:54:30.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1202. 08:59:30.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1203. 09:03:28.991 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1204. 09:04:30.773 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1205. 09:09:30.788 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1206. 09:14:30.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1207. 09:19:02.296 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1208. 09:19:02.296 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1209. 09:19:30.828 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1210. 09:24:30.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1211. 09:29:30.870 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1212. 09:34:30.884 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1213. 09:39:30.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1214. 09:44:30.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1215. 09:48:52.905 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1216. 09:48:52.905 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1217. 09:48:52.905 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1218. 09:48:52.905 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1219. 09:48:52.905 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1220. 09:48:52.905 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1221. 09:48:52.905 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1222. 09:48:52.905 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1223. 09:48:52.905 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1224. 09:48:52.921 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1225. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1226. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1227. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1228. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1229. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1230. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1231. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1232. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1233. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1234. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1235. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1236. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1237. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1238. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1239. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1240. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1241. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1242. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1243. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1244. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1245. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1246. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1247. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 09:48:52 AST 2023]
  1248. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1249. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1250. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1251. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1252. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1253. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1254. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1255. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1256. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1257. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1258. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1259. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1260. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1261. 09:48:52.921 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1262. 09:48:59.436 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1263. 09:48:59.436 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1264. 09:48:59.436 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1265. 09:48:59.436 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1266. 09:48:59.436 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1267. 09:48:59.436 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1268. 09:48:59.436 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1269. 09:48:59.452 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1270. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1271. 09:48:59.452 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1272. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1273. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1274. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1275. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1276. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1277. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1278. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1279. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1280. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1281. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1282. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1283. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1284. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1285. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1286. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1287. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1288. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1289. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1290. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1291. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1292. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1293. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1294. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 09:48:59 AST 2023]
  1295. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1296. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1297. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1298. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1299. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1300. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1301. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1302. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1303. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1304. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1305. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1306. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1307. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1308. 09:48:59.452 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1309. 09:49:17.202 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1310. 09:49:30.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1311. 09:54:30.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1312. 09:59:30.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1313. 10:04:30.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1314. 10:09:31.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1315. 10:14:31.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1316. 10:19:02.474 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1317. 10:19:02.474 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1318. 10:19:31.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1319. 10:24:31.072 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1320. 10:29:31.093 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1321. 10:34:31.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1322. 10:39:31.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1323. 10:42:13.020 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1324. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [33058709@qq.com]
  1325. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [68aa43511f385925d7902b0d5e73d90b]
  1326. 10:42:13.020 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1327. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1328. 10:42:13.020 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1329. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1330. 10:42:13.020 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1331. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1332. 10:42:13.020 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1333. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1334. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:25:19.0]
  1335. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1336. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1337. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1338. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1339. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1340. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1341. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1342. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1343. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500014]
  1344. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1345. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1346. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1347. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [33058709@qq.com]
  1348. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1349. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1350. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1351. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [02]
  1352. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1353. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1354. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1355. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 10:42:13 AST 2023]
  1356. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1357. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1358. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [明]
  1359. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  1360. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [68aa43511f385925d7902b0d5e73d90b]
  1361. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  1362. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1363. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1364. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20096]
  1365. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020101]
  1366. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1367. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [33058709@qq.com]
  1368. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1369. 10:42:13.020 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20096]
  1370. 10:44:31.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1371. 10:49:31.184 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1372. 10:54:31.208 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1373. 10:59:31.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1374. 11:04:31.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1375. 11:07:51.609 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  1376. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1377. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1378. 11:07:51.609 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1379. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1380. 11:07:51.609 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1381. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1382. 11:07:51.609 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1383. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1384. 11:07:51.609 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1385. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1386. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1387. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1388. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1389. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1390. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1391. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1392. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1393. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1394. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1395. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1396. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1397. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1398. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1399. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1400. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1401. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1402. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1403. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1404. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1405. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1406. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1407. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 11:07:51 AST 2023]
  1408. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1409. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1410. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1411. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1412. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1413. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1414. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1415. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1416. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1417. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1418. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1419. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1420. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1421. 11:07:51.609 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1422. 11:08:13.515 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1423. 11:09:31.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1424. 11:12:49.190 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1425. 11:12:49.190 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  1426. 11:12:49.190 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  1427. 11:12:49.190 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1428. 11:12:49.190 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1429. 11:12:49.190 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1430. 11:12:49.190 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1431. 11:12:49.206 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1432. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1433. 11:12:49.206 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1434. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  1435. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  1436. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1437. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1438. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1439. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1440. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1441. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1442. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1443. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1444. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  1445. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1446. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1447. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1448. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  1449. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1450. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1451. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1452. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  1453. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1454. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [山东省青岛市 电信]
  1455. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [123.168.92.200]
  1456. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 11:12:49 AST 2023]
  1457. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1458. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1459. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  1460. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010203]
  1461. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  1462. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  1463. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1464. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1465. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  1466. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020302]
  1467. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1468. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  1469. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1470. 11:12:49.206 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  1471. 11:12:58.378 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1472. 11:14:31.285 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1473. 11:19:02.644 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1474. 11:19:02.644 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1475. 11:19:31.300 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1476. 11:24:31.320 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1477. 11:24:51.523 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1478. 11:24:51.523 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
  1479. 11:24:51.523 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  1480. 11:24:51.538 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1481. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1482. 11:24:51.538 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1483. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1484. 11:24:51.538 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1485. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1486. 11:24:51.538 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1487. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1488. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
  1489. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1490. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1491. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1492. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1493. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1494. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1495. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1496. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1497. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
  1498. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1499. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1500. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1501. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
  1502. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1503. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1504. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1505. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
  1506. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1507. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1508. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1509. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 11:24:51 AST 2023]
  1510. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1511. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1512. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [楠]
  1513. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  1514. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  1515. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  1516. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1517. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1518. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
  1519. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020102]
  1520. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1521. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
  1522. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1523. 11:24:51.538 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
  1524. 11:25:06.304 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1525. 11:26:14.055 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1526. 11:29:31.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1527. 11:29:55.312 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1528. 11:29:55.890 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  1529. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [33058709@qq.com]
  1530. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [68aa43511f385925d7902b0d5e73d90b]
  1531. 11:29:55.905 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1532. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1533. 11:29:55.905 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1534. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1535. 11:29:55.905 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1536. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1537. 11:29:55.905 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1538. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1539. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:25:19.0]
  1540. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1541. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1542. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1543. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1544. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1545. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1546. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1547. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1548. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500014]
  1549. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1550. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1551. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1552. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [33058709@qq.com]
  1553. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1554. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1555. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1556. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [02]
  1557. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1558. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1559. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1560. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 11:29:55 AST 2023]
  1561. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1562. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1563. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [明]
  1564. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010201]
  1565. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [68aa43511f385925d7902b0d5e73d90b]
  1566. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
  1567. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1568. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1569. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20096]
  1570. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020101]
  1571. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1572. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [33058709@qq.com]
  1573. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1574. 11:29:55.905 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20096]
  1575. 11:30:02.202 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1576. 11:33:30.939 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1577. 11:34:31.362 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1578. 11:37:59.970 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1579. 11:39:31.377 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1580. 11:44:31.392 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1581. 11:49:31.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1582. 11:54:31.432 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1583. 11:59:31.453 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1584. 12:04:31.473 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1585. 12:09:31.489 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1586. 12:14:31.508 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1587. 12:19:02.811 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1588. 12:19:02.811 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1589. 12:19:31.530 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1590. 12:24:31.550 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1591. 12:26:54.536 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1592. 12:26:54.536 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1593. 12:26:54.536 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1594. 12:26:54.536 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1595. 12:26:54.536 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1596. 12:26:54.552 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1597. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1598. 12:26:54.552 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1599. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1600. 12:26:54.552 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1601. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1602. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1603. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1604. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1605. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1606. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1607. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1608. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1609. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1610. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1611. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1612. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1613. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1614. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1615. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1616. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1617. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1618. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1619. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1620. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1621. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
  1622. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.25.80.220]
  1623. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 12:26:54 AST 2023]
  1624. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1625. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1626. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1627. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1628. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1629. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1630. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1631. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1632. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1633. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1634. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1635. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1636. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1637. 12:26:54.552 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1638. 12:27:03.286 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1639. 12:29:31.572 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1640. 12:34:31.592 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1641. 12:39:31.610 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1642. 12:44:31.631 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1643. 12:49:31.650 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1644. 12:54:31.670 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1645. 12:59:31.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1646. 13:04:31.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1647. 13:09:31.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1648. 13:14:31.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1649. 13:19:02.984 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1650. 13:19:02.984 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1651. 13:19:31.781 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1652. 13:24:31.801 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1653. 13:29:31.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1654. 13:34:31.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1655. 13:39:31.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1656. 13:44:31.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1657. 13:49:31.900 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1658. 13:54:31.920 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1659. 13:59:31.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1660. 14:04:31.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1661. 14:09:31.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1662. 14:14:32.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1663. 14:19:03.158 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1664. 14:19:03.158 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1665. 14:19:32.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1666. 14:24:32.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1667. 14:29:32.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1668. 14:34:32.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1669. 14:39:32.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1670. 14:44:32.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1671. 14:49:32.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1672. 14:51:10.453 [http-nio-8500-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_.username=? and userinfota0_.password=? limit ?
  1673. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
  1674. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1675. 14:51:10.453 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1676. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1677. 14:51:10.453 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1678. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1679. 14:51:10.453 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1680. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1681. 14:51:10.453 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1682. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1683. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
  1684. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1685. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [18.162.243.23]
  1686. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2023-03-31 11:52:01.0]
  1687. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1688. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1689. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1690. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1691. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1692. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
  1693. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1694. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1695. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1696. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
  1697. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1698. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1699. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1700. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
  1701. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1702. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
  1703. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [180.212.228.164]
  1704. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri May 05 14:51:10 AST 2023]
  1705. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1706. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1707. 14:51:10.453 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
  1708. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1709. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
  1710. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1711. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1712. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1713. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
  1714. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010201]
  1715. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1716. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
  1717. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1718. 14:51:10.469 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
  1719. 14:51:20.391 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1720. 14:54:32.175 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1721. 14:59:32.196 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1722. 15:04:32.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1723. 15:09:32.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1724. 15:14:32.263 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1725. 15:19:03.325 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1726. 15:19:03.325 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1727. 15:19:32.278 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1728. 15:24:32.298 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1729. 15:29:32.317 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1730. 15:34:32.344 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1731. 15:39:32.372 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1732. 15:44:32.391 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1733. 15:49:32.410 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1734. 15:54:32.429 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1735. 15:59:32.449 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1736. 16:04:32.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1737. 16:09:32.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1738. 16:14:32.515 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1739. 16:19:03.493 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1740. 16:19:03.493 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1741. 16:19:32.540 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1742. 16:24:32.561 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1743. 16:29:32.584 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1744. 16:34:32.610 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1745. 16:39:32.636 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1746. 16:44:32.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1747. 16:49:32.678 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1748. 16:54:32.699 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1749. 16:59:32.719 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1750. 17:04:32.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1751. 17:09:32.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1752. 17:14:32.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1753. 17:19:03.667 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1754. 17:19:03.667 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1755. 17:19:32.808 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1756. 17:24:32.830 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1757. 17:29:32.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1758. 17:34:32.878 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1759. 17:39:32.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1760. 17:44:32.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1761. 17:49:32.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1762. 17:54:32.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1763. 17:59:32.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1764. 18:04:33.016 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1765. 18:09:33.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1766. 18:14:33.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1767. 18:19:03.844 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1768. 18:19:03.844 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1769. 18:19:33.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1770. 18:24:33.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1771. 18:29:33.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1772. 18:34:33.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1773. 18:39:33.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1774. 18:43:49.482 [http-nio-8500-exec-7] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  1775. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  1776. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  1777. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  1778. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  1779. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  1780. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  1781. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  1782. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  1783. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  1784. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  1785. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  1786. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  1787. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1788. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1789. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1790. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1791. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1792. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1793. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1794. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1795. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1796. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1797. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1798. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1799. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1800. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1801. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1802. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1803. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1804. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1805. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1806. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1807. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1808. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1809. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1810. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1811. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1812. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1813. at java.lang.Thread.run(Unknown Source)
  1814. 18:43:49.482 [http-nio-8500-exec-7] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1815. com.crm.rely.backend.exception.LoginException: invalid
  1816. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1817. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1818. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1819. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1820. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1821. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1822. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1823. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1824. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1825. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1826. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1827. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1828. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1829. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1830. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1831. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1832. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1833. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1834. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1835. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1836. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1837. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1838. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1839. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1840. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1841. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1842. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1843. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1844. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1845. at java.lang.Thread.run(Unknown Source)
  1846. 18:43:49.482 [http-nio-8500-exec-7] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1847. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  1848. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1849. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1850. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1851. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1852. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1853. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1854. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1855. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1856. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1857. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1858. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1859. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1860. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1861. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1862. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1863. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1864. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1865. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1866. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1867. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1868. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1869. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1870. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1871. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1872. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1873. at java.lang.Thread.run(Unknown Source)
  1874. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  1875. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1876. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1877. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1878. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1879. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1880. ... 25 common frames omitted
  1881. 18:44:33.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1882. 18:49:33.211 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1883. 18:54:33.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1884. 18:59:33.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1885. 19:04:33.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1886. 19:09:33.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1887. 19:14:33.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1888. 19:19:04.017 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1889. 19:19:04.017 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  1890. 19:19:33.332 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1891. 19:24:33.353 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1892. 19:29:23.125 [http-nio-8500-exec-9] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  1893. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  1894. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  1895. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  1896. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  1897. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  1898. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  1899. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  1900. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  1901. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  1902. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  1903. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  1904. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  1905. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1906. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1907. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1908. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1909. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1910. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1911. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1912. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1913. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1914. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1915. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1916. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1917. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1918. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1919. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1920. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1921. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1922. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1923. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1924. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1925. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1926. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1927. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1928. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1929. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1930. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1931. at java.lang.Thread.run(Unknown Source)
  1932. 19:29:23.125 [http-nio-8500-exec-9] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1933. com.crm.rely.backend.exception.LoginException: invalid
  1934. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1935. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1936. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1937. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1938. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1939. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1940. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1941. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1942. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1943. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1944. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1945. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1946. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1947. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1948. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1949. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1950. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1951. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1952. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1953. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1954. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1955. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1956. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1957. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1958. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1959. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1960. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1961. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1962. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1963. at java.lang.Thread.run(Unknown Source)
  1964. 19:29:23.125 [http-nio-8500-exec-9] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1965. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  1966. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1967. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1968. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1969. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1970. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1971. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1972. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1973. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1974. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1975. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1976. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1977. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1978. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1979. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1980. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1981. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1982. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1983. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1984. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1985. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1986. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1987. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1988. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1989. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1990. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1991. at java.lang.Thread.run(Unknown Source)
  1992. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  1993. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1994. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1995. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1996. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1997. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1998. ... 25 common frames omitted
  1999. 19:29:33.375 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2000. 19:34:33.396 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2001. 19:39:33.414 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2002. 19:44:33.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2003. 19:49:33.456 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2004. 19:54:33.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2005. 19:59:33.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2006. 20:04:33.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2007. 20:09:33.539 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2008. 20:14:33.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2009. 20:16:16.342 [http-nio-8500-exec-1] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2010. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2011. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  2012. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2013. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2014. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2015. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2016. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2017. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2018. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2019. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2020. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2021. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2022. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2023. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2024. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2025. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2026. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2027. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2028. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2029. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2030. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2031. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2032. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2033. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2034. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2035. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2036. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2037. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2038. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2039. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2040. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2041. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2042. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2043. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2044. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2045. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2046. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2047. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2048. at java.lang.Thread.run(Unknown Source)
  2049. 20:16:16.342 [http-nio-8500-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2050. com.crm.rely.backend.exception.LoginException: invalid
  2051. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2052. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2053. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2054. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2055. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2056. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2057. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2058. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2059. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2060. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2061. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2062. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2063. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2064. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2065. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2066. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2067. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2068. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2069. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2070. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2071. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2072. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2073. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2074. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2075. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2076. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2077. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2078. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2079. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2080. at java.lang.Thread.run(Unknown Source)
  2081. 20:16:16.342 [http-nio-8500-exec-1] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2082. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2083. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2084. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2085. at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
  2086. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2087. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2088. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2089. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2090. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2091. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2092. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2093. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2094. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2095. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2096. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2097. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2098. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2099. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2100. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2101. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2102. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2103. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2104. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2105. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2106. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2107. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2108. at java.lang.Thread.run(Unknown Source)
  2109. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2110. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2111. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2112. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2113. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2114. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2115. ... 25 common frames omitted
  2116. 20:19:04.188 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2117. 20:19:04.188 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  2118. 20:19:33.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2119. 20:24:33.599 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2120. 20:29:33.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2121. 20:34:33.637 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2122. 20:39:33.654 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2123. 20:44:33.676 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2124. 20:49:33.701 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2125. 20:54:33.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2126. 20:59:33.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2127. 21:04:33.765 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2128. 21:09:33.788 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2129. 21:14:33.807 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2130. 21:19:04.360 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2131. 21:19:04.360 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  2132. 21:19:33.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2133. 21:24:33.848 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2134. 21:29:33.867 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2135. 21:34:33.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2136. 21:39:33.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2137. 21:44:33.923 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2138. 21:49:33.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2139. 21:54:33.968 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2140. 21:59:33.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2141. 22:04:34.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2142. 22:09:34.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2143. 22:14:34.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2144. 22:19:04.526 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2145. 22:19:04.526 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  2146. 22:19:34.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2147. 22:24:34.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2148. 22:29:34.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2149. 22:34:34.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2150. 22:39:34.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2151. 22:44:34.172 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2152. 22:49:34.191 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2153. 22:54:34.212 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2154. 22:55:32.009 [http-nio-8500-exec-4] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
  2155. 22:59:34.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2156. 23:04:34.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2157. 23:09:34.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2158. 23:14:34.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2159. 23:19:04.699 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2160. 23:19:04.699 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu May 04 00:00:00 AST 2023]
  2161. 23:19:34.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2162. 23:24:34.330 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2163. 23:29:34.351 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2164. 23:34:34.370 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2165. 23:39:34.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2166. 23:44:34.427 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2167. 23:49:34.448 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2168. 23:54:34.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2169. 23:59:34.492 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration