api_test_v2_results.txt 437 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181
  1. API Test Results (Correct Methods) - 2026-05-25 22:39:53
  2. 200 OK: 796
  3. 404: 2461
  4. 500: 1342
  5. 403: 5
  6. OTHER: 9
  7. === 404 ===
  8. DELETE /ad/ | ad.js
  9. DELETE /ad/adDomain/ | adDomain.js
  10. DELETE /ad/AdDyAccount/ | AdDyAccount.js
  11. DELETE /ad/adDyApi/ | adDyApi.js
  12. DELETE /ad/AdIqiyiAccount/ | AdIqiyiAccount.js
  13. DELETE /ad/adSite/ | adSite.js
  14. DELETE /ad/AdUploadLog/ | AdUploadLog.js
  15. DELETE /ad/AdYouKuAccount/ | AdYouKuaccount.js
  16. DELETE /ad/clickLog/ | clickLog.js
  17. DELETE /ad/html/template/ | htmlTemplate.js
  18. DELETE /admin/medical/indicator/ | indicator.js
  19. DELETE /admin/medical/report/ | report.js
  20. DELETE /admin/medical/result/ | reportIndicator.js
  21. DELETE /admin/medical/unit/ | unit.js
  22. DELETE /adv/advertiser/batch | advertiser.js
  23. DELETE /aiChatQuality/ | aiChatQuality.js
  24. DELETE /aiob/AiobBaiduCallApi/ | AiobBaiduCallApi.js
  25. DELETE /aiob/AiobBaiduEncryption/ | AiobBaiduEncryption.js
  26. DELETE /aiob/AiobBaiduTask/ | AiobBaiduTask.js
  27. DELETE /aiProvider/ | aiProvider.js
  28. DELETE /article/ | article.js
  29. DELETE /bd/BdAccount/ | BdAccount.js
  30. DELETE /callRecord/ | callRecord.js
  31. DELETE /commissionRecord/ | commissionRecord.js
  32. DELETE /company/ | company.js
  33. DELETE /company/addwx/ | addwx.js
  34. DELETE /company/addwxLog/ | addwx.js
  35. DELETE /company/aiWorkflow/deleteVoice/ | aiWorkflow.js
  36. DELETE /company/callphone/ | callphone.js
  37. DELETE /company/company/ | company.js
  38. DELETE /company/companyOperLog/ | companyOperLog.js
  39. DELETE /company/companyRedPacketBalanceLogs/ | companyRedPacketBalanceLogs.js
  40. DELETE /company/companySmsPackage/ | companySmsPackage.js
  41. DELETE /company/companyTag/ | companyTag.js
  42. DELETE /company/companyTagGroup/ | companyTagGroup.js
  43. DELETE /company/companyUser/ | companyUser.js
  44. DELETE /company/CompanyUserAll/ | companyUserAll.js
  45. DELETE /company/companyVoice/ | companyVoice.js
  46. DELETE /company/companyVoiceApi/ | companyVoiceApi.js
  47. DELETE /company/companyVoiceBlacklist/ | companyVoiceBlacklist.js
  48. DELETE /company/companyVoiceCaller/ | companyVoiceCaller.js
  49. DELETE /company/companyVoiceConfig/ | companyVoiceConfig.js
  50. DELETE /company/companyVoiceLogs/ | companyVoiceLogs.js
  51. DELETE /company/companyVoicePackage/ | companyVoicePackage.js
  52. DELETE /company/companyVoicePackageOrder/ | companyVoicePackageOrder.js
  53. DELETE /company/companyWorkflow/ | companyWorkflow.js
  54. DELETE /company/schedule/ | schedule.js
  55. DELETE /company/sendmsg/ | sendmsg.js
  56. DELETE /companyWorkflow/externalApi/ | externalApi.js
  57. DELETE /complaint/category/ | category.js
  58. DELETE /consumeRecord/ | consumeRecord.js
  59. DELETE /course/ | course.js
  60. DELETE /course/courseAnswerLog/ | courseAnswerLog.js
  61. DELETE /course/courseDomainName/ | courseDomainName.js
  62. DELETE /course/courseQuestionBank/ | courseQuestionBank.js
  63. DELETE /course/courseQuestionCategory/ | courseQuestionCategory.js
  64. DELETE /course/courseWatchComment/ | courseWatchComment.js
  65. DELETE /course/fsCourseProduct/ | fsCourseProduct.js
  66. DELETE /course/fsCourseProductOrder/ | fsCourseProductOrder.js
  67. DELETE /course/fsUserCoursePeriodDays/ | fsUserCoursePeriodDays.js
  68. DELETE /course/statistics/ | statistics.js
  69. DELETE /course/trainingCamp/ | trainingCamp.js
  70. DELETE /course/userCourseComment/ | userCourseComment.js
  71. DELETE /course/userCourseCommentLike/ | userCourseCommentLike.js
  72. DELETE /course/userCourseComplaintRecord/ | userCourseComplaintRecord.js
  73. DELETE /course/userCourseComplaintType/ | userCourseComplaintType.js
  74. DELETE /course/userCourseFavorite/ | userCourseFavorite.js
  75. DELETE /course/userCourseNote/ | userCourseNote.js
  76. DELETE /course/userCourseNoteLike/ | userCourseNoteLike.js
  77. DELETE /course/userCourseOrder/ | userCourseOrder.js
  78. DELETE /course/userCourseStudy/ | userCourseStudy.js
  79. DELETE /course/userCourseStudyLog/ | userCourseStudyLog.js
  80. DELETE /course/userTalent/ | userTalent.js
  81. DELETE /course/userTalentFollow/ | userTalentFollow.js
  82. DELETE /course/userVideo/ | userVideo.js
  83. DELETE /course/userVideoComment/ | userVideoComment.js
  84. DELETE /course/userVideoCommentLike/ | userVideoCommentLike.js
  85. DELETE /course/userVideoFavorite/ | userVideoFavorite.js
  86. DELETE /course/userVideoLike/ | userVideoLike.js
  87. DELETE /course/userVideoView/ | userVideoView.js
  88. DELETE /course/userVipOrder/ | userVipOrder.js
  89. DELETE /course/userVipPackage/ | userVipPackage.js
  90. DELETE /course/videoResource/ | videoResource.js
  91. DELETE /course/videoTags/ | userVideoTags.js
  92. DELETE /courseFinishTemp/course/ | course.js
  93. DELETE /crm/ | crm.js
  94. DELETE /crm/analyze/ | customerAnalyze.js
  95. DELETE /crm/assist/ | assist.js
  96. DELETE /crm/customer/ | customer.js
  97. DELETE /crm/customerHisOrder/ | customerHisOrder.js
  98. DELETE /crm/event/ | event.js
  99. DELETE /crm/msg/ | msg.js
  100. DELETE /crm/third/ | third.js
  101. DELETE /doctorChat/session/ | aiDoctorChat.js
  102. DELETE /fast_gpt/read_package/ | readPackage.js
  103. DELETE /fastGpt/fastGptChatReplaceText/ | fastGptChatReplaceText.js
  104. DELETE /fastGpt/fastGptChatReplaceWords/ | fastGptChatReplaceWords.js
  105. DELETE /fastGpt/FastGptExtUserTag/ | FastGptExtUserTag.js
  106. DELETE /fastGpt/role/ | fastGptRole.js
  107. DELETE /FastGptExtUserTag/ | FastGptExtUserTag.js
  108. DELETE /his/adv/ | adv.js
  109. DELETE /his/aiWorkflow/ | aiWorkflow.js
  110. DELETE /his/answer/ | answer.js
  111. DELETE /his/appVersion/ | appVersion.js
  112. DELETE /his/article/ | article.js
  113. DELETE /his/articleCate/ | articleCate.js
  114. DELETE /his/articleViews/ | articleViews.js
  115. DELETE /his/caseArticle/ | caseArticle.js
  116. DELETE /his/chineseMedicine/ | chineseMedicine.js
  117. DELETE /his/city | city.js
  118. DELETE /his/city/ | city.js
  119. DELETE /his/company/ | company.js
  120. DELETE /his/companyDeduct/ | companyDeduct.js
  121. DELETE /his/companyRecharge/ | companyRecharge.js
  122. DELETE /his/complaint/ | complaint.js
  123. DELETE /his/coupon/ | coupon.js
  124. DELETE /his/department/ | department.js
  125. DELETE /his/dfAccount/ | dfAccount.js
  126. DELETE /his/disease/ | disease.js
  127. DELETE /his/divItem/ | divItem.js
  128. DELETE /his/doctor/ | doctor.js
  129. DELETE /his/doctorArticle/ | doctorArticle.js
  130. DELETE /his/doctorArticleCate/ | doctorArticleCate.js
  131. DELETE /his/doctorBill/ | doctorBill.js
  132. DELETE /his/doctorExtract/ | doctorExtract.js
  133. DELETE /his/doctorOperLog/ | doctorOperLog.js
  134. DELETE /his/doctorPrescribe/ | doctorPrescribe.js
  135. DELETE /his/doctorPrescribeDrug/ | doctorPrescribeDrug.js
  136. DELETE /his/doctorProduct/ | doctorProduct.js
  137. DELETE /his/drugReport/ | drugReport.js
  138. DELETE /his/drugReportCount/ | drugReportCount.js
  139. DELETE /his/exportTask/ | exportTask.js
  140. DELETE /his/express/ | express.js
  141. DELETE /his/famousPrescribe/ | famousPrescribe.js
  142. DELETE /his/followTemp/ | followTemp.js
  143. DELETE /his/fsFirstDiagnosis/ | fsFirstDiagnosis.js
  144. DELETE /his/healthArticle/ | healthArticle.js
  145. DELETE /his/healthData/ | healthData.js
  146. DELETE /his/healthHistoryTemp/ | healthHistoryTemp.js
  147. DELETE /his/healthLife/ | healthLife.js
  148. DELETE /his/healthRecord/ | healthRecord.js
  149. DELETE /his/healthTongue/ | healthTongue.js
  150. DELETE /his/hfpayConfig/ | hfpayConfig.js
  151. DELETE /his/homeArticle/ | homeArticle.js
  152. DELETE /his/homeCategory/ | homeCategory.js
  153. DELETE /his/homeView/ | homeView.js
  154. DELETE /his/hospital/ | hospital.js
  155. DELETE /his/icd/ | icd.js
  156. DELETE /his/illnessLibrary/ | illnessLibrary.js
  157. DELETE /his/inquiryDisease/ | inquiryDisease.js
  158. DELETE /his/inquiryOrder/ | inquiryOrder.js
  159. DELETE /his/inquiryOrderPing/ | inquiryOrderPing.js
  160. DELETE /his/inquiryOrderReport/ | inquiryOrderReport.js
  161. DELETE /his/inquiryTemp/ | inquiryTemp.js
  162. DELETE /his/logs/ | logs.js
  163. DELETE /his/medicatedFood/ | medicatedFood.js
  164. DELETE /his/merchantAppConfig/ | merchantAppConfig.js
  165. DELETE /his/package/ | package.js
  166. DELETE /his/packageCate/ | packageCate.js
  167. DELETE /his/packageFavorite/ | packageFavorite.js
  168. DELETE /his/packageOrder/ | packageOrder.js
  169. DELETE /his/packageSolarTerm/ | packageSolarTerm.js
  170. DELETE /his/patient/ | patient.js
  171. DELETE /his/pharmacist/ | pharmacist.js
  172. DELETE /his/physicalReportTemplate/ | physicalReportTemplate.js
  173. DELETE /his/physicalReportTemplateField/ | physicalReportTemplateField.js
  174. DELETE /his/prescribe/ | prescribe.js
  175. DELETE /his/price/ | price.js
  176. DELETE /his/promotionActive/ | promotionActive.js
  177. DELETE /his/promotionActiveLog/ | promotionActiveLog.js
  178. DELETE /his/questions/ | questions.js
  179. DELETE /his/store/ | store.js
  180. DELETE /his/storeActivity/ | storeActivity.js
  181. DELETE /his/storeAfterSales/ | storeAfterSales.js
  182. DELETE /his/storeBill/ | storeBill.js
  183. DELETE /his/storeExtract/ | storeExtract.js
  184. DELETE /his/storeLog/ | storeLog.js
  185. DELETE /his/storeOrder/ | storeOrder.js
  186. DELETE /his/storePayment/ | storePayment.js
  187. DELETE /his/storeProduct/ | storeProduct.js
  188. DELETE /his/storeProductCategory/ | storeProductCategory.js
  189. DELETE /his/storeProductPackage/ | storeProductPackage.js
  190. DELETE /his/storeSubOrder/ | storeSubOrder.js
  191. DELETE /his/template/ | complaint.js
  192. DELETE /his/testReport/ | testReport.js
  193. DELETE /his/testTemp/ | testTemp.js
  194. DELETE /his/testTempItem/ | testTempItem.js
  195. DELETE /his/user/ | user.js
  196. DELETE /his/user/batchUnbind | user.js
  197. DELETE /his/user/delete/ | user.js
  198. DELETE /his/userAddress/ | userAddress.js
  199. DELETE /his/userBill/ | userBill.js
  200. DELETE /his/userCoupon/ | userCoupon.js
  201. DELETE /his/userExtract/ | userExtract.js
  202. DELETE /his/userIntegralLogs/ | userIntegralLogs.js
  203. DELETE /his/userNewTask/ | userNewTask.js
  204. DELETE /his/userRecharge/ | userRecharge.js
  205. DELETE /his/vessel/ | vessel.js
  206. DELETE /his_store/store_instan_discount_issue/ | storeInstanDiscountIssue.js
  207. DELETE /his_store/store_instant_discount/ | storeInstantDiscount.js
  208. DELETE /his_store/store_instant_discount_user/ | storeInstantDiscountUser.js
  209. DELETE /hisStore/collection/ | collection.js
  210. DELETE /live/ | live.js
  211. DELETE /live/comment/ | comment.js
  212. DELETE /live/coupon/issue/user/ | liveCouponIssueUser.js
  213. DELETE /live/healthLiveOrder/ | healthLiveOrder.js
  214. DELETE /live/issue/ | issue.js
  215. DELETE /live/live_cart/ | liveCart.js
  216. DELETE /live/live_order_item/ | liveOrderItem.js
  217. DELETE /live/liveAfterSalesItem/ | liveAfterSalesItem.js
  218. DELETE /live/liveAfterSalesLogs/ | liveAfterSalesLogs.js
  219. DELETE /live/liveEventConf/ | liveEventConf.js
  220. DELETE /live/liveLotteryProductConf/ | liveLotteryProductConf.js
  221. DELETE /live/liveOrder/ | liveOrder.js
  222. DELETE /live/liveOrderStatus/ | liveOrderStatus.js
  223. DELETE /live/liveQuestion/ | liveQuestion.js
  224. DELETE /live/liveQuestionBank/ | liveQuestionBank.js
  225. DELETE /live/liveUserRedRecord/ | liveUserRedRecord.js
  226. DELETE /live/trafficLog/ | liveTrafficLog.js
  227. DELETE /liveData/ | liveData.js
  228. DELETE /moduleUsage/ | moduleUsage.js
  229. DELETE /monitor/jobLog/ | jobLog.js
  230. DELETE /monitor/logininfor/ | logininfor.js
  231. DELETE /monitor/online/ | online.js
  232. DELETE /monitor/operlog/ | operlog.js
  233. DELETE /product/ | product.js
  234. DELETE /proxy/ | proxy.js
  235. DELETE /push/push/ | push.js
  236. DELETE /qw/course/courseAnswerLog/ | courseAnswerlogs.js
  237. DELETE /qw/externalContactCrm/ | externalContactCrm.js
  238. DELETE /qw/externalContactTransferCompanyAudit/ | externalContactTransferCompanyAudit.js
  239. DELETE /qw/group_chat_user/ | group_chat_user.js
  240. DELETE /qw/groupMsgItem/ | groupMsgItem.js
  241. DELETE /qw/qwAppContactWayLogs/ | qwAppContactWayLogs.js
  242. DELETE /qw/qwCompany/ | qwCompany.js
  243. DELETE /qw/qwInformation/ | qwInformation.js
  244. DELETE /qw/qwIpadServer/ | qwIpadServer.js
  245. DELETE /qw/qwIpadServerLog/ | qwIpadServerLog.js
  246. DELETE /qw/qwIpadServerUser/ | qwIpadServerUser.js
  247. DELETE /qw/qwPushCount/ | qwPushCount.js
  248. DELETE /qw/record/ | record.js
  249. DELETE /qw/records/ | applyIpad.js
  250. DELETE /qw/workLink/ | workLink.js
  251. DELETE /qw/workLinkUser/ | workLinkUser.js
  252. DELETE /qw/workUser/ | workUser.js
  253. DELETE /qwAssignRule/ | assignRule.js
  254. DELETE /qwExternalContact/ | qwExternalContact.js
  255. DELETE /qwGroupActual/ | groupActual.js
  256. DELETE /qwGroupLiveCode/ | groupLiveCode.js
  257. DELETE /qwSop/sopUserLogsInfo/ | sopUserLogsInfo.js
  258. DELETE /rechargeRecord/ | rechargeRecord.js
  259. DELETE /recharge-templates/ | template.js
  260. DELETE /redPacket/more/ | redPacketConfig.js
  261. DELETE /shop/msg/ | msg.js
  262. DELETE /shop/records/ | records.js
  263. DELETE /shop/role/ | role.js
  264. DELETE /sop/ | sop.js
  265. DELETE /sop/companySopRole/ | companySopRole.js
  266. DELETE /store/ | store.js
  267. DELETE /store/adv/ | adv.js
  268. DELETE /store/coupon/ | coupon.js
  269. DELETE /store/doctor/ | doctor.js
  270. DELETE /store/exportTask/ | exportTask.js
  271. DELETE /store/healthData/ | healthData.js
  272. DELETE /store/healthLife/ | healthLife.js
  273. DELETE /store/healthStoreOrder/ | healthStoreOrder.js
  274. DELETE /store/healthTongue/ | healthTongue.js
  275. DELETE /store/his/chineseMedicine/ | chineseMedicine.js
  276. DELETE /store/his/department/ | department.js
  277. DELETE /store/his/disease/ | disease.js
  278. DELETE /store/his/doctorArticle/ | doctorArticle.js
  279. DELETE /store/his/famousPrescribe/ | famousPrescribe.js
  280. DELETE /store/his/illnessLibrary/ | illnessLibrary.js
  281. DELETE /store/his/integralOrder/ | integralOrder.js
  282. DELETE /store/his/medicatedFood/ | medicatedFood.js
  283. DELETE /store/his/store/ | store.js
  284. DELETE /store/his/testReport/ | testReport.js
  285. DELETE /store/his/testTemp/ | testTemp.js
  286. DELETE /store/his/testTempItem/ | testTempItem.js
  287. DELETE /store/his/vessel/ | vessel.js
  288. DELETE /store/homeArticle/ | homeArticle.js
  289. DELETE /store/homeCategory/ | homeCategory.js
  290. DELETE /store/homeView/ | homeView.js
  291. DELETE /store/menu/ | menu.js
  292. DELETE /store/prescribeDrug/ | prescribeDrug.js
  293. DELETE /store/PromotionOrder/ | PromotionOrder.js
  294. DELETE /store/recommend/ | recommend.js
  295. DELETE /store/shippingTemplates/ | shippingTemplates.js
  296. DELETE /store/shippingTemplatesFree/ | shippingTemplatesFree.js
  297. DELETE /store/shippingTemplatesRegion/ | shippingTemplatesRegion.js
  298. DELETE /store/store/user/delete/ | user.js
  299. DELETE /store/storeActivity/ | storeActivity.js
  300. DELETE /store/storeAfterSalesItem/ | storeAfterSalesItem.js
  301. DELETE /store/storeAfterSalesStatus/ | storeAfterSalesStatus.js
  302. DELETE /store/storeCart/ | storeCart.js
  303. DELETE /store/storeCoupon/ | storeCoupon.js
  304. DELETE /store/storeCouponIssue/ | storeCouponIssue.js
  305. DELETE /store/storeCouponIssueUser/ | storeCouponIssueUser.js
  306. DELETE /store/storeCouponUser/ | storeCouponUser.js
  307. DELETE /store/storeOrderAudit/ | storeOrderAudit.js
  308. DELETE /store/storeOrderItem/ | storeOrderItem.js
  309. DELETE /store/storeOrderNotice/ | storeOrderNotice.js
  310. DELETE /store/storeOrderOffline/ | storeOrderOffline.js
  311. DELETE /store/storeOrderStatus/ | storeOrderStatus.js
  312. DELETE /store/storeProductAttr/ | storeProductAttr.js
  313. DELETE /store/storeProductAttrValue/ | storeProductAttrValue.js
  314. DELETE /store/storeProductDetails/ | storeProductDetails.js
  315. DELETE /store/storeProductGroup/ | storeProductGroup.js
  316. DELETE /store/storeProductRelation/ | storeProductRelation.js
  317. DELETE /store/storeProductReply/ | storeProductReply.js
  318. DELETE /store/storeProductRule/ | storeProductRule.js
  319. DELETE /store/storeProductTemplate/ | storeProductTemplate.js
  320. DELETE /store/storeShop/ | storeShop.js
  321. DELETE /store/storeShopStaff/ | storeShopStaff.js
  322. DELETE /store/storeVisit/ | storeVisit.js
  323. DELETE /store/userPromoterApply/ | userPromoterApply.js
  324. DELETE /storeOrder/ | storeOrder.js
  325. DELETE /storeOrderOfflineItem/store/ | store.js
  326. DELETE /sysCompany/ | sysCompany.js
  327. DELETE /system/companyVoiceDialog/ | companyVoiceDialog.js
  328. DELETE /system/companyVoiceRobotic/ | companyVoiceRobotic.js
  329. DELETE /system/companyVoiceRoboticCallees/ | companyVoiceRoboticCallees.js
  330. DELETE /system/config/ | config.js
  331. DELETE /system/config/refreshCache | config.js
  332. DELETE /system/dept/ | dept.js
  333. DELETE /system/dict/data/ | data.js
  334. DELETE /system/dict/type/ | type.js
  335. DELETE /system/keyword/ | keyword.js
  336. DELETE /system/menu/ | menu.js
  337. DELETE /system/notice/ | notice.js
  338. DELETE /system/post/ | post.js
  339. DELETE /system/role/ | role.js
  340. DELETE /system/set/ | set.js
  341. DELETE /system/user/ | user.js
  342. DELETE /sysUser/ | sysUser.js
  343. DELETE /tenant/ | tenant.js
  344. DELETE /tenant/record/ | record.js
  345. DELETE /tenant/tenant/ | tenant.js
  346. DELETE /tenant/tenant/delTenantComMenu/ | menu.js
  347. DELETE /tenant/tenant/delTenantMenu/ | menu.js
  348. DELETE /tools/user/ | user.js
  349. DELETE /tools/userCoinLog/ | userCoinLog.js
  350. DELETE /tools/videoOrder/ | videoOrder.js
  351. DELETE /tools/vipOrder/ | vipOrder.js
  352. DELETE /user/complaint/ | complaint.js
  353. DELETE /user/msg/ | complaint.js
  354. DELETE /watch-api/device/ | deviceInfo.js
  355. DELETE /watch-api/materials/ | materials.js
  356. DELETE /watch-api/type/ | materialsType.js
  357. DELETE /withdrawalManage/ | withdrawalManage.js
  358. DELETE /workflow/template/ | workflowLobster.js
  359. DELETE /wx/wxSop/ | wxSop.js
  360. DELETE /wx/wxSopLogs/ | wxSopLogs.js
  361. DELETE /wx/wxSopUser/ | wxSopUser.js
  362. DELETE /wx/wxSopUserInfo/ | wxSopUserInfo.js
  363. DELETE /wxSop/sopUserLogsWx/ | sopUserLogsWx.js
  364. GET /ad/ | ad.js
  365. GET /ad/adAccount/listAll | adAccount.js
  366. GET /ad/adDomain/ | adDomain.js
  367. GET /ad/adDomain/export | adDomain.js
  368. GET /ad/adDomain/list | adDomain.js
  369. GET /ad/adDomain/listAll | adDomain.js
  370. GET /ad/AdDyAccount/ | AdDyAccount.js
  371. GET /ad/AdDyAccount/export | AdDyAccount.js
  372. GET /ad/AdDyAccount/list | AdDyAccount.js
  373. GET /ad/adDyApi/ | adDyApi.js
  374. GET /ad/adDyApi/list | adDyApi.js
  375. GET /ad/AdIqiyiAccount/ | AdIqiyiAccount.js
  376. GET /ad/AdIqiyiAccount/export | AdIqiyiAccount.js
  377. GET /ad/AdIqiyiAccount/list | AdIqiyiAccount.js
  378. GET /ad/AdIqiyiAccount/listAll | AdIqiyiAccount.js
  379. GET /ad/adSite/ | adSite.js
  380. GET /ad/adSite/export | adSite.js
  381. GET /ad/adSite/list | adSite.js
  382. GET /ad/adSite/listAll | adSite.js
  383. GET /ad/AdUploadLog/ | AdUploadLog.js
  384. GET /ad/AdUploadLog/export | AdUploadLog.js
  385. GET /ad/AdUploadLog/list | AdUploadLog.js
  386. GET /ad/AdYouKuAccount/ | AdYouKuaccount.js
  387. GET /ad/AdYouKuAccount/export | AdYouKuaccount.js
  388. GET /ad/AdYouKuAccount/list | AdYouKuaccount.js
  389. GET /ad/AdYouKuAccount/listAll | AdYouKuaccount.js
  390. GET /ad/clickLog/ | clickLog.js
  391. GET /ad/clickLog/list | clickLog.js
  392. GET /ad/html/template/ | htmlTemplate.js
  393. GET /ad/html/template/export | htmlTemplate.js
  394. GET /ad/html/template/list | htmlTemplate.js
  395. GET /ad/html/template/listAll | htmlTemplate.js
  396. GET /ad/list | ad.js
  397. GET /admin/medical/indicator/ | indicator.js
  398. GET /admin/medical/indicator/listEnabled | indicator.js
  399. GET /admin/medical/indicator/page | indicator.js
  400. GET /admin/medical/report/ | report.js
  401. GET /admin/medical/report/listByUser/ | report.js
  402. GET /admin/medical/report/page | report.js
  403. GET /admin/medical/result/ | reportIndicator.js
  404. GET /admin/medical/result/listByIndicator/ | reportIndicator.js
  405. GET /admin/medical/result/listByReport/ | reportIndicator.js
  406. GET /admin/medical/result/page | reportIndicator.js
  407. GET /admin/medical/unit/ | unit.js
  408. GET /admin/medical/unit/listAll | unit.js
  409. GET /admin/medical/unit/page | unit.js
  410. GET /adv/site-statistics/ | siteStatistics.js
  411. GET /adv/site-statistics/site/ | siteStatistics.js
  412. GET /adv/tracking-link/ | trackingLink.js
  413. GET /aiChatQuality/ | aiChatQuality.js
  414. GET /aiChatQuality/list | aiChatQuality.js
  415. GET /aiob/AiobBaiduCallApi/ | AiobBaiduCallApi.js
  416. GET /aiob/AiobBaiduCallApi/export | AiobBaiduCallApi.js
  417. GET /aiob/AiobBaiduCallApi/list | AiobBaiduCallApi.js
  418. GET /aiob/AiobBaiduEncryption/ | AiobBaiduEncryption.js
  419. GET /aiob/AiobBaiduEncryption/export | AiobBaiduEncryption.js
  420. GET /aiob/AiobBaiduEncryption/list | AiobBaiduEncryption.js
  421. GET /aiob/AiobBaiduTask/ | AiobBaiduTask.js
  422. GET /aiob/AiobBaiduTask/export | AiobBaiduTask.js
  423. GET /aiob/AiobBaiduTask/list | AiobBaiduTask.js
  424. GET /aiob/AiobBaiduTask/robotList | AiobBaiduTask.js
  425. GET /aiProvider/ | aiProvider.js
  426. GET /aiProvider/list | aiProvider.js
  427. GET /api/admin/external-api/active-list | workflowLobster.js
  428. GET /api/fee/billing/detail/list | billing.js
  429. GET /api/fee/billing/detail/my | wallet.js
  430. GET /api/fee/wallet/ | billing.js
  431. GET /api/fee/wallet/me | wallet.js
  432. GET /article/ | article.js
  433. GET /article/list | article.js
  434. GET /baiduStatistics/conversionStatistics | statistics.js
  435. GET /baiduStatistics/fsAdvSemStatisticsExport | statistics.js
  436. GET /baiduStatistics/getReportData | statistics.js
  437. GET /baiduStatistics/selectFsAdvSemStatisticsByDayVo | statistics.js
  438. GET /bd/BdAccount/ | BdAccount.js
  439. GET /bd/BdAccount/authorizationUrl | BdAccount.js
  440. GET /bd/BdAccount/export | BdAccount.js
  441. GET /bd/BdAccount/list | BdAccount.js
  442. GET /bd/BdAccount/listAll | BdAccount.js
  443. GET /bd/BdAccount/listAllCreative | BdAccount.js
  444. GET /bd/BdAccount/listAllPlan | BdAccount.js
  445. GET /bd/BdAccount/listAllUnit | BdAccount.js
  446. GET /callRecord/ | callRecord.js
  447. GET /callRecord/list | callRecord.js
  448. GET /commissionRecord/ | commissionRecord.js
  449. GET /commissionRecord/list | commissionRecord.js
  450. GET /common/getTask/ | common.js
  451. GET /company/ | company.js
  452. GET /company/addwx/ | addwx.js
  453. GET /company/addwx/export | addwx.js
  454. GET /company/aiSipCall/task/download/template/ | aiSipCallTask.js
  455. GET /company/apply/ | companyApply.js
  456. GET /company/callphone/ | callphone.js
  457. GET /company/callphone/export | callphone.js
  458. GET /company/company/ | company.js
  459. GET /company/company/crmDayCountlist | company.js
  460. GET /company/company/export | company.js
  461. GET /company/company/liveShowList | company.js
  462. GET /company/companyConfig/export | companyConfig.js
  463. GET /company/companyConfig/getConfigByKey/ | companyConfig.js
  464. GET /company/companyConfig/list | companyConfig.js
  465. GET /company/companyMoneyLogs/ | companyMoneyLogs.js
  466. GET /company/companyMoneyLogs/list1 | companyMoneyLogs.js
  467. GET /company/companyMoneyLogs/list2 | companyMoneyLogs.js
  468. GET /company/companyMoneyLogs/list3 | companyMoneyLogs.js
  469. GET /company/companyOperLog/ | companyOperLog.js
  470. GET /company/companyOperLog/export | companyOperLog.js
  471. GET /company/companyRedPacketBalanceLogs/ | companyRedPacketBalanceLogs.js
  472. GET /company/companySmsPackage/ | companySmsPackage.js
  473. GET /company/companySmsPackage/export | companySmsPackage.js
  474. GET /company/companyTag/ | companyTag.js
  475. GET /company/companyTag/export | companyTag.js
  476. GET /company/companyTag/list | companyTag.js
  477. GET /company/companyTagGroup/ | companyTagGroup.js
  478. GET /company/companyTagGroup/export | companyTagGroup.js
  479. GET /company/companyTagGroup/list | companyTagGroup.js
  480. GET /company/companyUser/ | companyUser.js
  481. GET /company/companyUser/export | companyUser.js
  482. GET /company/companyUser/getAllUserlist | companyUser.js
  483. GET /company/companyUser/getAllUserListLimit | user.js
  484. GET /company/companyUser/getCompanyUserList | companyUser.js
  485. GET /company/companyUser/getCompanyUserListLikeName | companyUser.js
  486. GET /company/companyUser/getCompanyUserListPage | companyUser.js
  487. GET /company/companyUser/getUserList?companyId= | companyUser.js
  488. GET /company/companyUser/getUserListByDeptId | companyUser.js
  489. GET /company/companyUser/list | companyUser.js
  490. GET /company/CompanyUserAll/ | companyUserAll.js
  491. GET /company/CompanyUserAll/addInfo/ | companyUserAll.js
  492. GET /company/CompanyUserAll/export | companyUserAll.js
  493. GET /company/CompanyUserAll/generateSubDomain | companyUserAll.js
  494. GET /company/CompanyUserAll/getCitysAreaList | companyUserAll.js
  495. GET /company/CompanyUserAll/getList | companyUserAll.js
  496. GET /company/CompanyUserAll/importTemplate | companyUserAll.js
  497. GET /company/CompanyUserAll/qwList | companyUserAll.js
  498. GET /company/CompanyUserAll/unBindDoctorId/ | companyUserAll.js
  499. GET /company/companyVoice/ | companyVoice.js
  500. GET /company/companyVoiceApi/ | companyVoiceApi.js
  501. GET /company/companyVoiceApi/export | companyVoiceApi.js
  502. GET /company/companyVoiceApi/getVoiceApiList | companyVoiceApi.js
  503. GET /company/companyVoiceBlacklist/ | companyVoiceBlacklist.js
  504. GET /company/companyVoiceCaller/ | companyVoiceCaller.js
  505. GET /company/companyVoiceConfig/ | companyVoiceConfig.js
  506. GET /company/companyVoiceLogs/ | companyVoiceLogs.js
  507. GET /company/companyVoicePackage/ | companyVoicePackage.js
  508. GET /company/companyVoicePackageOrder/ | companyVoicePackageOrder.js
  509. GET /company/companyWorkflow/ | companyWorkflow.js
  510. GET /company/index/getCount | index.js
  511. GET /company/list | company.js
  512. GET /company/module-consumption/report | consumeReport.js
  513. GET /company/redPackage/export | redPackage.js
  514. GET /company/redPackage/list | redPackage.js
  515. GET /company/schedule/ | schedule.js
  516. GET /company/schedule/export | schedule.js
  517. GET /company/schedule/getTcmScheduleList | schedule.js
  518. GET /company/schedule/list | schedule.js
  519. GET /company/sendmsg/ | sendmsg.js
  520. GET /company/sendmsg/export | sendmsg.js
  521. GET /company/statistics/afterSalesOrder | statistics.js
  522. GET /company/statistics/appOrderCountStats | statistics.js
  523. GET /company/statistics/courseReport | packageOrder.js
  524. GET /company/statistics/customer | statistics.js
  525. GET /company/statistics/customerVisit | statistics.js
  526. GET /company/statistics/exportAfterSalesOrder | statistics.js
  527. GET /company/statistics/exportCustomer | statistics.js
  528. GET /company/statistics/exportCustomerVisit | statistics.js
  529. GET /company/statistics/exportFsCourseReportVO | packageOrder.js
  530. GET /company/statistics/exportInquiryOrder | statistics.js
  531. GET /company/statistics/exportIpadStaticByTime/ | statistics.js
  532. GET /company/statistics/exportPackageOrder | statistics.js
  533. GET /company/statistics/exportStoreOrder | statistics.js
  534. GET /company/statistics/exportStorePayment | statistics.js
  535. GET /company/statistics/exportTokenStaticByTime/ | statistics.js
  536. GET /company/statistics/exportTuiMoney | statistics.js
  537. GET /company/statistics/exportVoiceLogs | statistics.js
  538. GET /company/statistics/hisOrderCountStats | statistics.js
  539. GET /company/statistics/inquiryOrder | statistics.js
  540. GET /company/statistics/ipadStaticTotal/ | statistics.js
  541. GET /company/statistics/packageOrder | statistics.js
  542. GET /company/statistics/storeOrder | statistics.js
  543. GET /company/statistics/storePayment | statistics.js
  544. GET /company/statistics/tokenStaticTotal/ | statistics.js
  545. GET /company/statistics/tuiMoney | statistics.js
  546. GET /companyWorkflow/externalApi/ | externalApi.js
  547. GET /complaint/category/ | category.js
  548. GET /complaint/category/list | category.js
  549. GET /consumeRecord/ | consumeRecord.js
  550. GET /consumeRecord/list | consumeRecord.js
  551. GET /course/ | course.js
  552. GET /course/courseAnswerLog/ | courseAnswerLog.js
  553. GET /course/courseDomainName/ | courseDomainName.js
  554. GET /course/courseDomainName/export | courseDomainName.js
  555. GET /course/courseDomainName/list | courseDomainName.js
  556. GET /course/courseQuestionBank/ | courseQuestionBank.js
  557. GET /course/courseQuestionBank/export | courseQuestionBank.js
  558. GET /course/courseQuestionBank/getByIds | courseQuestionBank.js
  559. GET /course/courseQuestionBank/importTemplate | courseQuestionBank.js
  560. GET /course/courseQuestionBank/list | courseQuestionBank.js
  561. GET /course/courseQuestionCategory/ | courseQuestionCategory.js
  562. GET /course/courseQuestionCategory/list | courseQuestionCategory.js
  563. GET /course/courseRedPacketStatistics/list | courseRedPacketStatistics.js
  564. GET /course/courseWatchComment/ | courseWatchComment.js
  565. GET /course/courseWatchComment/export | courseWatchComment.js
  566. GET /course/fsCourseProduct/ | fsCourseProduct.js
  567. GET /course/fsCourseProduct/export | fsCourseProduct.js
  568. GET /course/fsCourseProduct/list | fsCourseProduct.js
  569. GET /course/fsCourseProductOrder/ | fsCourseProductOrder.js
  570. GET /course/fsCourseProductOrder/decodeExport | fsCourseProductOrder.js
  571. GET /course/fsCourseProductOrder/export | fsCourseProductOrder.js
  572. GET /course/fsCourseProductOrder/list | fsCourseProductOrder.js
  573. GET /course/fsCourseProductOrder/queryPhone/ | fsCourseProductOrder.js
  574. GET /course/fsUserCoursePeriodDays/ | fsUserCoursePeriodDays.js
  575. GET /course/fsUserCoursePeriodDays/export | fsUserCoursePeriodDays.js
  576. GET /course/fsUserCoursePeriodDays/list | fsUserCoursePeriodDays.js
  577. GET /course/list | course.js
  578. GET /course/statistics/ | statistics.js
  579. GET /course/statistics/export | statistics.js
  580. GET /course/statistics/list | statistics.js
  581. GET /course/trainingCamp/ | trainingCamp.js
  582. GET /course/trainingCamp/getCampListLikeName | userCourseCamp.js
  583. GET /course/userCourseComment/ | userCourseComment.js
  584. GET /course/userCourseComment/export | userCourseComment.js
  585. GET /course/userCourseComment/list | userCourseComment.js
  586. GET /course/userCourseCommentLike/ | userCourseCommentLike.js
  587. GET /course/userCourseCommentLike/export | userCourseCommentLike.js
  588. GET /course/userCourseCommentLike/list | userCourseCommentLike.js
  589. GET /course/userCourseComplaintRecord/ | userCourseComplaintRecord.js
  590. GET /course/userCourseComplaintRecord/export | userCourseComplaintRecord.js
  591. GET /course/userCourseComplaintRecord/getInfoByUserId/ | userCourseComplaintRecord.js
  592. GET /course/userCourseComplaintRecord/list | userCourseComplaintRecord.js
  593. GET /course/userCourseComplaintType/ | userCourseComplaintType.js
  594. GET /course/userCourseComplaintType/export | userCourseComplaintType.js
  595. GET /course/userCourseComplaintType/list | userCourseComplaintType.js
  596. GET /course/userCourseFavorite/ | userCourseFavorite.js
  597. GET /course/userCourseFavorite/export | userCourseFavorite.js
  598. GET /course/userCourseFavorite/list | userCourseFavorite.js
  599. GET /course/userCourseNote/ | userCourseNote.js
  600. GET /course/userCourseNote/export | userCourseNote.js
  601. GET /course/userCourseNote/list | userCourseNote.js
  602. GET /course/userCourseNoteLike/ | userCourseNoteLike.js
  603. GET /course/userCourseNoteLike/export | userCourseNoteLike.js
  604. GET /course/userCourseNoteLike/list | userCourseNoteLike.js
  605. GET /course/userCourseOrder/ | userCourseOrder.js
  606. GET /course/userCourseOrder/export | userCourseOrder.js
  607. GET /course/userCourseOrder/list | userCourseOrder.js
  608. GET /course/userCourseStudy/ | userCourseStudy.js
  609. GET /course/userCourseStudy/export | userCourseStudy.js
  610. GET /course/userCourseStudy/list | userCourseStudy.js
  611. GET /course/userCourseStudyLog/ | userCourseStudyLog.js
  612. GET /course/userCourseStudyLog/export | userCourseStudyLog.js
  613. GET /course/userCourseStudyLog/list | userCourseStudyLog.js
  614. GET /course/userTalent/ | userTalent.js
  615. GET /course/userTalent/export | userTalent.js
  616. GET /course/userTalent/list | userTalent.js
  617. GET /course/userTalent/listBySearch | userTalent.js
  618. GET /course/userTalent/listCompanyByKeyword/ | userTalent.js
  619. GET /course/userTalentFollow/ | userTalentFollow.js
  620. GET /course/userTalentFollow/export | userTalentFollow.js
  621. GET /course/userTalentFollow/list | userTalentFollow.js
  622. GET /course/userVideo/ | userVideo.js
  623. GET /course/userVideo/export | userVideo.js
  624. GET /course/userVideo/getVideoListByCourseId | userVideo.js
  625. GET /course/userVideo/HsyAssumeRoleService | userVideo.js
  626. GET /course/userVideo/list | userVideo.js
  627. GET /course/userVideoComment/ | userVideoComment.js
  628. GET /course/userVideoComment/export | userVideoComment.js
  629. GET /course/userVideoComment/list | userVideoComment.js
  630. GET /course/userVideoCommentLike/ | userVideoCommentLike.js
  631. GET /course/userVideoCommentLike/list | userVideoCommentLike.js
  632. GET /course/userVideoFavorite/ | userVideoFavorite.js
  633. GET /course/userVideoFavorite/list | userVideoFavorite.js
  634. GET /course/userVideoLike/ | userVideoLike.js
  635. GET /course/userVideoLike/list | userVideoLike.js
  636. GET /course/userVideoView/ | userVideoView.js
  637. GET /course/userVideoView/list | userVideoView.js
  638. GET /course/userVipOrder/ | userVipOrder.js
  639. GET /course/userVipOrder/export | userVipOrder.js
  640. GET /course/userVipOrder/list | userVipOrder.js
  641. GET /course/userVipPackage/ | userVipPackage.js
  642. GET /course/userVipPackage/export | userVipPackage.js
  643. GET /course/userVipPackage/list | userVipPackage.js
  644. GET /course/videoResource/ | videoResource.js
  645. GET /course/videoResource/list | videoResource.js
  646. GET /course/videoTags/ | userVideoTags.js
  647. GET /course/videoTags/export | userVideoTags.js
  648. GET /course/videoTags/list | userVideoTags.js
  649. GET /course/videoTags/subList | userVideoTags.js
  650. GET /courseFinishTemp/course/ | course.js
  651. GET /crm/ | crm.js
  652. GET /crm/analyze/ | customerAnalyze.js
  653. GET /crm/analyze/export | customerAnalyze.js
  654. GET /crm/analyze/list | customerAnalyze.js
  655. GET /crm/assist/ | assist.js
  656. GET /crm/assist/export | assist.js
  657. GET /crm/assist/list | assist.js
  658. GET /crm/customerHisOrder/ | customerHisOrder.js
  659. GET /crm/customerHisOrder/export | customerHisOrder.js
  660. GET /crm/event/ | event.js
  661. GET /crm/event/export | event.js
  662. GET /crm/list | crm.js
  663. GET /crm/msg/ | msg.js
  664. GET /crm/msg/export | msg.js
  665. GET /crm/report/export | report.js
  666. GET /crm/report/reportList | report.js
  667. GET /crm/statistics/exportCustomerSource | statistics.js
  668. GET /crm/third/ | third.js
  669. GET /crm/third/export | third.js
  670. GET /crm/third/list | third.js
  671. GET /doctorChat/msg/list | aiDoctorChat.js
  672. GET /doctorChat/session/ | aiDoctorChat.js
  673. GET /doctorChat/session/export | aiDoctorChat.js
  674. GET /doctorChat/session/list | aiDoctorChat.js
  675. GET /easyCall/gateway/getGatewayCompanyList | company.js
  676. GET /easyCall/gateway/list | config.js
  677. GET /fast_gpt/read_package/ | readPackage.js
  678. GET /fast_gpt/read_package/list | readPackage.js
  679. GET /fastGpt/fastGptChatReplaceText/ | fastGptChatReplaceText.js
  680. GET /fastGpt/fastGptChatReplaceText/export | fastGptChatReplaceText.js
  681. GET /fastGpt/fastGptChatReplaceText/list | fastGptChatReplaceText.js
  682. GET /fastGpt/fastGptChatReplaceWords/ | fastGptChatReplaceWords.js
  683. GET /fastGpt/fastGptChatReplaceWords/export | fastGptChatReplaceWords.js
  684. GET /fastGpt/fastGptChatReplaceWords/list | fastGptChatReplaceWords.js
  685. GET /fastGpt/FastGptExtUserTag/ | FastGptExtUserTag.js
  686. GET /fastGpt/FastGptExtUserTag/export | FastGptExtUserTag.js
  687. GET /fastGpt/FastGptExtUserTag/getMyQwUserList | FastGptExtUserTag.js
  688. GET /fastGpt/FastGptExtUserTag/list | FastGptExtUserTag.js
  689. GET /fastGpt/fastGptRoles/export | role.js
  690. GET /fastGpt/role/ | fastGptRole.js
  691. GET /fastGpt/role/getAllRoleList | fastGptRole.js
  692. GET /fastGpt/role/list | fastGptRole.js
  693. GET /fastGpt/role/newList | fastGptRole.js
  694. GET /fastGpt/role/relieveFastGptRole/ | fastGptRole.js
  695. GET /FastGptExtUserTag/ | FastGptExtUserTag.js
  696. GET /FastGptExtUserTag/list | FastGptExtUserTag.js
  697. GET /food-record/admin/list | record.js
  698. GET /food-record/getRecordInfo/ | record.js
  699. GET /fsuser/user/list | user.js
  700. GET /his/adv/ | adv.js
  701. GET /his/adv/export | adv.js
  702. GET /his/adv/list | adv.js
  703. GET /his/aiWorkflow/ | aiWorkflow.js
  704. GET /his/aiWorkflow/checkCompanyUserBeUsed/ | aiWorkflow.js
  705. GET /his/aiWorkflow/export | aiWorkflow.js
  706. GET /his/aiWorkflow/getBindCompanyUserByWorkflowId/ | aiWorkflow.js
  707. GET /his/aiWorkflow/list | aiWorkflow.js
  708. GET /his/aiWorkflow/listCompanyUser | aiWorkflow.js
  709. GET /his/aiWorkflow/nodeTypes | aiWorkflow.js
  710. GET /his/answer/ | answer.js
  711. GET /his/answer/allList | answer.js
  712. GET /his/answer/export | answer.js
  713. GET /his/answer/list | answer.js
  714. GET /his/appVersion/ | appVersion.js
  715. GET /his/appVersion/export | appVersion.js
  716. GET /his/appVersion/list | appVersion.js
  717. GET /his/article/ | article.js
  718. GET /his/article/export | article.js
  719. GET /his/article/list | article.js
  720. GET /his/articleCate/ | articleCate.js
  721. GET /his/articleCate/allList | articleCate.js
  722. GET /his/articleCate/export | articleCate.js
  723. GET /his/articleCate/list | articleCate.js
  724. GET /his/articleViews/ | articleViews.js
  725. GET /his/articleViews/export | articleViews.js
  726. GET /his/articleViews/list | articleViews.js
  727. GET /his/caseArticle/ | caseArticle.js
  728. GET /his/caseArticle/export | caseArticle.js
  729. GET /his/caseArticle/importTemplate | caseArticle.js
  730. GET /his/caseArticle/list | caseArticle.js
  731. GET /his/chineseMedicine/ | chineseMedicine.js
  732. GET /his/chineseMedicine/export | chineseMedicine.js
  733. GET /his/chineseMedicine/importTemplate | chineseMedicine.js
  734. GET /his/chineseMedicine/list | chineseMedicine.js
  735. GET /his/city/ | city.js
  736. GET /his/city/getAllList | city.js
  737. GET /his/city/getCitys | integralOrder.js
  738. GET /his/city/getCitysArea | company.js
  739. GET /his/city/list | city.js
  740. GET /his/cityexport | city.js
  741. GET /his/company/ | company.js
  742. GET /his/company/export | company.js
  743. GET /his/company/getDivConfig/ | company.js
  744. GET /his/company/list | company.js
  745. GET /his/companyDeduct/ | companyDeduct.js
  746. GET /his/companyDeduct/export | companyDeduct.js
  747. GET /his/companyDeduct/list | companyDeduct.js
  748. GET /his/companyRecharge/ | companyRecharge.js
  749. GET /his/companyRecharge/export | companyRecharge.js
  750. GET /his/companyRecharge/list | companyRecharge.js
  751. GET /his/complaint/ | complaint.js
  752. GET /his/complaint/export | complaint.js
  753. GET /his/complaint/list | complaint.js
  754. GET /his/coupon/ | coupon.js
  755. GET /his/coupon/allList | coupon.js
  756. GET /his/coupon/export | coupon.js
  757. GET /his/coupon/list | coupon.js
  758. GET /his/data/doctorChartData/ | index.js
  759. GET /his/data/inquiryExport | index.js
  760. GET /his/data/inquiryOrderChart | index.js
  761. GET /his/data/inquiryOrderChartData | index.js
  762. GET /his/data/inquiryOrderChartInq | index.js
  763. GET /his/data/orderChartData | index.js
  764. GET /his/data/orderData | index.js
  765. GET /his/data/storeExport | index.js
  766. GET /his/data/storeOrderChart | index.js
  767. GET /his/data/storeOrderChartStore | index.js
  768. GET /his/department/ | department.js
  769. GET /his/department/export | department.js
  770. GET /his/department/list | department.js
  771. GET /his/department/listOptions | disease.js
  772. GET /his/dfAccount/ | dfAccount.js
  773. GET /his/dfAccount/export | dfAccount.js
  774. GET /his/dfAccount/list | dfAccount.js
  775. GET /his/disease/ | disease.js
  776. GET /his/disease/export | disease.js
  777. GET /his/disease/list | disease.js
  778. GET /his/divItem/ | divItem.js
  779. GET /his/divItem/export | divItem.js
  780. GET /his/divItem/list | divItem.js
  781. GET /his/doctor/ | doctor.js
  782. GET /his/doctorArticle/ | doctorArticle.js
  783. GET /his/doctorArticle/export | doctorArticle.js
  784. GET /his/doctorArticle/list | doctorArticle.js
  785. GET /his/doctorArticleCate/ | doctorArticleCate.js
  786. GET /his/doctorArticleCate/allList | doctorArticleCate.js
  787. GET /his/doctorArticleCate/export | doctorArticleCate.js
  788. GET /his/doctorArticleCate/list | doctorArticleCate.js
  789. GET /his/doctorBill/ | doctorBill.js
  790. GET /his/doctorBill/export | doctorBill.js
  791. GET /his/doctorBill/list | doctorBill.js
  792. GET /his/doctorExtract/ | doctorExtract.js
  793. GET /his/doctorExtract/export | doctorExtract.js
  794. GET /his/doctorExtract/list | doctorExtract.js
  795. GET /his/doctorOperLog/ | doctorOperLog.js
  796. GET /his/doctorOperLog/export | doctorOperLog.js
  797. GET /his/doctorOperLog/list | doctorOperLog.js
  798. GET /his/doctorPrescribe/ | doctorPrescribe.js
  799. GET /his/doctorPrescribe/export | doctorPrescribe.js
  800. GET /his/doctorPrescribe/list | doctorPrescribe.js
  801. GET /his/doctorPrescribeDrug/ | doctorPrescribeDrug.js
  802. GET /his/doctorPrescribeDrug/export | doctorPrescribeDrug.js
  803. GET /his/doctorPrescribeDrug/list | doctorPrescribeDrug.js
  804. GET /his/doctorProduct/ | doctorProduct.js
  805. GET /his/doctorProduct/list | doctorProduct.js
  806. GET /his/drugReport/ | drugReport.js
  807. GET /his/drugReport/export | drugReport.js
  808. GET /his/drugReport/list | drugReport.js
  809. GET /his/drugReportCount/ | drugReportCount.js
  810. GET /his/drugReportCount/export | drugReportCount.js
  811. GET /his/drugReportCount/list | drugReportCount.js
  812. GET /his/exportTask/ | exportTask.js
  813. GET /his/exportTask/export | exportTask.js
  814. GET /his/exportTask/list | exportTask.js
  815. GET /his/express/ | express.js
  816. GET /his/express/export | express.js
  817. GET /his/express/getExpressList | express.js
  818. GET /his/express/list | express.js
  819. GET /his/express/omsCode/ | express.js
  820. GET /his/famousPrescribe/ | famousPrescribe.js
  821. GET /his/famousPrescribe/export | famousPrescribe.js
  822. GET /his/famousPrescribe/list | famousPrescribe.js
  823. GET /his/followTemp/ | followTemp.js
  824. GET /his/followTemp/allList | followTemp.js
  825. GET /his/followTemp/export | followTemp.js
  826. GET /his/followTemp/list | followTemp.js
  827. GET /his/fsFirstDiagnosis/ | fsFirstDiagnosis.js
  828. GET /his/fsFirstDiagnosis/export | fsFirstDiagnosis.js
  829. GET /his/fsFirstDiagnosis/list | fsFirstDiagnosis.js
  830. GET /his/healthArticle/ | healthArticle.js
  831. GET /his/healthData/ | healthData.js
  832. GET /his/healthData/export | healthData.js
  833. GET /his/healthData/list | healthData.js
  834. GET /his/healthHistoryTemp/ | healthHistoryTemp.js
  835. GET /his/healthHistoryTemp/export | healthHistoryTemp.js
  836. GET /his/healthHistoryTemp/list | healthHistoryTemp.js
  837. GET /his/healthLife/ | healthLife.js
  838. GET /his/healthLife/export | healthLife.js
  839. GET /his/healthLife/list | healthLife.js
  840. GET /his/healthRecord/ | healthRecord.js
  841. GET /his/healthRecord/export | healthRecord.js
  842. GET /his/healthRecord/list | healthRecord.js
  843. GET /his/healthTongue/ | healthTongue.js
  844. GET /his/healthTongue/export | healthTongue.js
  845. GET /his/healthTongue/list | healthTongue.js
  846. GET /his/hfpayConfig/ | hfpayConfig.js
  847. GET /his/hfpayConfig/export | hfpayConfig.js
  848. GET /his/hfpayConfig/list | hfpayConfig.js
  849. GET /his/homeArticle/ | homeArticle.js
  850. GET /his/homeArticle/export | homeArticle.js
  851. GET /his/homeArticle/list | homeArticle.js
  852. GET /his/homeCategory/ | homeCategory.js
  853. GET /his/homeCategory/allList | homeCategory.js
  854. GET /his/homeCategory/export | homeCategory.js
  855. GET /his/homeCategory/list | homeCategory.js
  856. GET /his/homeView/ | homeView.js
  857. GET /his/homeView/export | homeView.js
  858. GET /his/homeView/list | homeView.js
  859. GET /his/hospital/ | hospital.js
  860. GET /his/hospital/allList | hospital.js
  861. GET /his/hospital/export | hospital.js
  862. GET /his/hospital/importTemplate | hospital.js
  863. GET /his/hospital/list | hospital.js
  864. GET /his/icd/ | icd.js
  865. GET /his/icd/allIcd/ | icd.js
  866. GET /his/icd/export | icd.js
  867. GET /his/icd/importTemplate | icd.js
  868. GET /his/icd/list | icd.js
  869. GET /his/illnessLibrary/ | illnessLibrary.js
  870. GET /his/illnessLibrary/export | illnessLibrary.js
  871. GET /his/illnessLibrary/getIllness/ | illnessLibrary.js
  872. GET /his/illnessLibrary/list | illnessLibrary.js
  873. GET /his/inquiryDisease/ | inquiryDisease.js
  874. GET /his/inquiryDisease/export | inquiryDisease.js
  875. GET /his/inquiryDisease/importTemplate | inquiryDisease.js
  876. GET /his/inquiryDisease/list | inquiryDisease.js
  877. GET /his/inquiryDisease/listBySearch | inquiryDisease.js
  878. GET /his/inquiryOrder/ | inquiryOrder.js
  879. GET /his/inquiryOrder/export | inquiryOrder.js
  880. GET /his/inquiryOrder/list | inquiryOrder.js
  881. GET /his/inquiryOrder/logList/ | inquiryOrder.js
  882. GET /his/inquiryOrder/messageFeedbackExport | inquiryOrder.js
  883. GET /his/inquiryOrder/msgList | inquiryOrder.js
  884. GET /his/inquiryOrder/sendMsg/ | inquiryOrder.js
  885. GET /his/inquiryOrderPing/ | inquiryOrderPing.js
  886. GET /his/inquiryOrderPing/export | inquiryOrderPing.js
  887. GET /his/inquiryOrderPing/list | inquiryOrderPing.js
  888. GET /his/inquiryOrderReport/ | inquiryOrderReport.js
  889. GET /his/inquiryOrderReport/export | inquiryOrderReport.js
  890. GET /his/inquiryOrderReport/getBody | inquiryOrderReport.js
  891. GET /his/inquiryOrderReport/getReportId/ | inquiryOrderReport.js
  892. GET /his/inquiryOrderReport/list | inquiryOrderReport.js
  893. GET /his/inquiryOrderReport/orderId/ | inquiryOrderReport.js
  894. GET /his/inquiryOrderReport/queryPatientMobile/ | inquiryOrderReport.js
  895. GET /his/inquiryPatientInfo/detail/ | inquiryPatient.js
  896. GET /his/inquiryTemp/ | inquiryTemp.js
  897. GET /his/inquiryTemp/export | inquiryTemp.js
  898. GET /his/inquiryTemp/list | inquiryTemp.js
  899. GET /his/logs/ | logs.js
  900. GET /his/logs/list | logs.js
  901. GET /his/logs/order/ | integralOrder.js
  902. GET /his/medicatedFood/ | medicatedFood.js
  903. GET /his/medicatedFood/export | medicatedFood.js
  904. GET /his/medicatedFood/importTemplate | medicatedFood.js
  905. GET /his/medicatedFood/list | medicatedFood.js
  906. GET /his/merchantAppConfig/ | merchantAppConfig.js
  907. GET /his/merchantAppConfig/export | merchantAppConfig.js
  908. GET /his/merchantAppConfig/list | merchantAppConfig.js
  909. GET /his/package/ | package.js
  910. GET /his/package/allList | package.js
  911. GET /his/package/bulkCopy/ | package.js
  912. GET /his/package/export | package.js
  913. GET /his/package/getChoosePackageList | package.js
  914. GET /his/package/importTemplate | package.js
  915. GET /his/package/list | package.js
  916. GET /his/package/listBySearch | package.js
  917. GET /his/packageCate/ | packageCate.js
  918. GET /his/packageCate/allList | packageCate.js
  919. GET /his/packageCate/cateList | packageCate.js
  920. GET /his/packageCate/export | packageCate.js
  921. GET /his/packageCate/list | packageCate.js
  922. GET /his/packageFavorite/ | packageFavorite.js
  923. GET /his/packageFavorite/list | packageFavorite.js
  924. GET /his/packageOrder/ | packageOrder.js
  925. GET /his/packageOrder/export | packageOrder.js
  926. GET /his/packageOrder/inquiryRefund/ | packageOrder.js
  927. GET /his/packageOrder/list | packageOrder.js
  928. GET /his/packageOrder/payment/ | packageOrder.js
  929. GET /his/packageOrder/queryPhone/ | packageOrder.js
  930. GET /his/packageOrder/refund/ | packageOrder.js
  931. GET /his/packageOrder/storeRefund/ | packageOrder.js
  932. GET /his/packageSolarTerm/ | packageSolarTerm.js
  933. GET /his/packageSolarTerm/getOptions | packageSolarTerm.js
  934. GET /his/packageSolarTerm/list | packageSolarTerm.js
  935. GET /his/patient/ | patient.js
  936. GET /his/patient/export | patient.js
  937. GET /his/patient/getPatient/ | patient.js
  938. GET /his/patient/list | patient.js
  939. GET /his/patient/userList | patient.js
  940. GET /his/pharmacist/ | pharmacist.js
  941. GET /his/physicalReportTemplate/ | physicalReportTemplate.js
  942. GET /his/physicalReportTemplate/export | physicalReportTemplate.js
  943. GET /his/physicalReportTemplate/list | physicalReportTemplate.js
  944. GET /his/physicalReportTemplateField/ | physicalReportTemplateField.js
  945. GET /his/physicalReportTemplateField/export | physicalReportTemplateField.js
  946. GET /his/physicalReportTemplateField/list | physicalReportTemplateField.js
  947. GET /his/prescribe/ | prescribe.js
  948. GET /his/prescribe/Drug/ | prescribe.js
  949. GET /his/prescribe/export | prescribe.js
  950. GET /his/prescribe/getImg | prescribe.js
  951. GET /his/prescribe/list | prescribe.js
  952. GET /his/prescribe/messageFeedbackExport | prescribe.js
  953. GET /his/prescribe/queryIdCard/ | prescribe.js
  954. GET /his/price/ | price.js
  955. GET /his/price/getDoctorPrice/ | doctor.js
  956. GET /his/price/list | price.js
  957. GET /his/promotionActive/ | promotionActive.js
  958. GET /his/promotionActive/getPromotionalActiveOption | promotionalActive.js
  959. GET /his/promotionActive/list | promotionActive.js
  960. GET /his/promotionActiveLog/ | promotionActiveLog.js
  961. GET /his/promotionActiveLog/list | promotionActiveLog.js
  962. GET /his/questions/ | questions.js
  963. GET /his/questions/export | questions.js
  964. GET /his/questions/importTemplate | questions.js
  965. GET /his/questions/list | questions.js
  966. GET /his/store/ | store.js
  967. GET /his/store/export | store.js
  968. GET /his/store/list | store.js
  969. GET /his/storeActivity/ | storeActivity.js
  970. GET /his/storeActivity/export | storeActivity.js
  971. GET /his/storeActivity/list | storeActivity.js
  972. GET /his/storeAfterSales/ | storeAfterSales.js
  973. GET /his/storeAfterSales/codeId/ | storeAfterSales.js
  974. GET /his/storeAfterSales/export | storeAfterSales.js
  975. GET /his/storeAfterSales/itemList/ | storeAfterSales.js
  976. GET /his/storeAfterSales/list | storeAfterSales.js
  977. GET /his/storeAfterSales/logList/ | storeAfterSales.js
  978. GET /his/storeBill/ | storeBill.js
  979. GET /his/storeBill/export | storeBill.js
  980. GET /his/storeBill/list | storeBill.js
  981. GET /his/storeExtract/ | storeExtract.js
  982. GET /his/storeExtract/export | storeExtract.js
  983. GET /his/storeExtract/list | storeExtract.js
  984. GET /his/storeLog/ | storeLog.js
  985. GET /his/storeOrder/ | storeOrder.js
  986. GET /his/storeOrder/createErpOrder/ | storeOrder.js
  987. GET /his/storeOrder/editTuiMoney/ | storeOrder.js
  988. GET /his/storeOrder/export | storeOrder.js
  989. GET /his/storeOrder/follow/ | storeOrder.js
  990. GET /his/storeOrder/getCustomerOrderList | storeOrder.js
  991. GET /his/storeOrder/getEroOrder/ | storeOrder.js
  992. GET /his/storeOrder/getErpAccount | storeOrder.js
  993. GET /his/storeOrder/getExpress/ | storeOrder.js
  994. GET /his/storeOrder/importExpressTemplate | storeOrder.js
  995. GET /his/storeOrder/importTemplate | storeOrder.js
  996. GET /his/storeOrder/importUpdateOrderTemplate | storeOrder.js
  997. GET /his/storeOrder/logList/ | storeOrder.js
  998. GET /his/storeOrder/ltemlist/ | storeOrder.js
  999. GET /his/storeOrder/msgList | storeOrder.js
  1000. GET /his/storeOrder/orderExport | storeOrder.js
  1001. GET /his/storeOrder/payment/ | storeOrder.js
  1002. GET /his/storeOrder/Prescribe/ | storeOrder.js
  1003. GET /his/storeOrder/queryErpPhone | storeOrder.js
  1004. GET /his/storeOrder/queryPhone/ | storeOrder.js
  1005. GET /his/storeOrder/returnCost/ | storeOrder.js
  1006. GET /his/storeOrder/sendMsg/ | storeOrder.js
  1007. GET /his/storeOrder/syncExpress/ | storeOrder.js
  1008. GET /his/storeOrder/updateExpress/ | storeOrder.js
  1009. GET /his/storePayment/ | storePayment.js
  1010. GET /his/storePayment/error/list | storePayment.js
  1011. GET /his/storePayment/export | storePayment.js
  1012. GET /his/storePayment/getStatus/ | storePayment.js
  1013. GET /his/storePayment/list | storePayment.js
  1014. GET /his/storePayment/refund/ | storePayment.js
  1015. GET /his/storeProduct/ | storeProduct.js
  1016. GET /his/storeProduct/export | storeProduct.js
  1017. GET /his/storeProduct/getAllStoreProductRule | storeProduct.js
  1018. GET /his/storeProduct/getStoreProductAttrValueList | storeProduct.js
  1019. GET /his/storeProduct/importTemplate | storeProduct.js
  1020. GET /his/storeProduct/list | storeProduct.js
  1021. GET /his/storeProduct/storeList | storeProduct.js
  1022. GET /his/storeProductCategory/ | storeProductCategory.js
  1023. GET /his/storeProductCategory/export | storeProductCategory.js
  1024. GET /his/storeProductCategory/getAllList | storeProductCategory.js
  1025. GET /his/storeProductCategory/getPidList | storeProductCategory.js
  1026. GET /his/storeProductCategory/list | storeProductCategory.js
  1027. GET /his/storeProductCategory/pid/list | storeProductCategory.js
  1028. GET /his/storeProductPackage/ | storeProductPackage.js
  1029. GET /his/storeProductPackage/export | storeProductPackage.js
  1030. GET /his/storeProductPackage/list | storeProductPackage.js
  1031. GET /his/storeSubOrder/ | storeSubOrder.js
  1032. GET /his/storeSubOrder/export | storeSubOrder.js
  1033. GET /his/storeSubOrder/list | storeSubOrder.js
  1034. GET /his/template/ | complaint.js
  1035. GET /his/template/export | complaint.js
  1036. GET /his/template/list | complaint.js
  1037. GET /his/template/treeList | complaint.js
  1038. GET /his/testReport/ | testReport.js
  1039. GET /his/testReport/export | testReport.js
  1040. GET /his/testReport/list | testReport.js
  1041. GET /his/testTemp/ | testTemp.js
  1042. GET /his/testTemp/allList | testTemp.js
  1043. GET /his/testTemp/export | testTemp.js
  1044. GET /his/testTemp/getTempType/ | testTemp.js
  1045. GET /his/testTemp/list | testTemp.js
  1046. GET /his/testTempItem/ | testTempItem.js
  1047. GET /his/testTempItem/export | testTempItem.js
  1048. GET /his/testTempItem/list | testTempItem.js
  1049. GET /his/user/ | user.js
  1050. GET /his/user/blacklist | user.js
  1051. GET /his/user/darkRoomList | user.js
  1052. GET /his/user/export | user.js
  1053. GET /his/user/exportListProject | user.js
  1054. GET /his/user/getUserAddr/ | user.js
  1055. GET /his/user/list | user.js
  1056. GET /his/user/listBySearch | user.js
  1057. GET /his/user/listProject | user.js
  1058. GET /his/user/user/list/ | user.js
  1059. GET /his/userAddress/ | userAddress.js
  1060. GET /his/userAddress/export | userAddress.js
  1061. GET /his/userAddress/getAddress/ | userAddress.js
  1062. GET /his/userAddress/list | userAddress.js
  1063. GET /his/userBill/ | userBill.js
  1064. GET /his/userBill/export | userBill.js
  1065. GET /his/userBill/list | userBill.js
  1066. GET /his/userCoupon/ | userCoupon.js
  1067. GET /his/userCoupon/export | userCoupon.js
  1068. GET /his/userCoupon/getList | userCoupon.js
  1069. GET /his/userCoupon/list | userCoupon.js
  1070. GET /his/userExtract/ | userExtract.js
  1071. GET /his/userExtract/export | userExtract.js
  1072. GET /his/userExtract/list | userExtract.js
  1073. GET /his/userIntegralLogs/ | userIntegralLogs.js
  1074. GET /his/userIntegralLogs/export | userIntegralLogs.js
  1075. GET /his/userIntegralLogs/list | userIntegralLogs.js
  1076. GET /his/userNewTask/ | userNewTask.js
  1077. GET /his/userNewTask/list | userNewTask.js
  1078. GET /his/userRecharge/ | userRecharge.js
  1079. GET /his/userRecharge/export | userRecharge.js
  1080. GET /his/userRecharge/list | userRecharge.js
  1081. GET /his/vessel/ | vessel.js
  1082. GET /his/vessel/allList | vessel.js
  1083. GET /his/vessel/export | vessel.js
  1084. GET /his/vessel/importTemplate | vessel.js
  1085. GET /his/vessel/list | vessel.js
  1086. GET /his_store/store_instan_discount_issue/ | storeInstanDiscountIssue.js
  1087. GET /his_store/store_instan_discount_issue/list | storeInstanDiscountIssue.js
  1088. GET /his_store/store_instant_discount/ | storeInstantDiscount.js
  1089. GET /his_store/store_instant_discount/list | storeInstantDiscount.js
  1090. GET /his_store/store_instant_discount_user/ | storeInstantDiscountUser.js
  1091. GET /his_store/store_instant_discount_user/list | storeInstantDiscountUser.js
  1092. GET /hisStore/collection/ | collection.js
  1093. GET /hisStore/collection/export | collection.js
  1094. GET /hisStore/collection/getInfo | collection.js
  1095. GET /hisStore/collection/getWxaCodeCollectionUnLimit/ | collection.js
  1096. GET /hisStore/collection/list | collection.js
  1097. GET /hwcloud/cdnStatistics | common.js
  1098. GET /live/ | live.js
  1099. GET /live/comment/ | comment.js
  1100. GET /live/comment/list | comment.js
  1101. GET /live/coupon/issue/export | liveCouponIssue.js
  1102. GET /live/coupon/issue/list | liveCouponIssue.js
  1103. GET /live/coupon/issue/listAllAvailable | liveCouponIssue.js
  1104. GET /live/coupon/issue/user/ | liveCouponIssueUser.js
  1105. GET /live/coupon/issue/user/export | liveCouponIssueUser.js
  1106. GET /live/coupon/issue/user/list | liveCouponIssueUser.js
  1107. GET /live/coupon/user/export | liveCouponUser.js
  1108. GET /live/coupon/user/list | liveCouponUser.js
  1109. GET /live/healthLiveOrder/ | healthLiveOrder.js
  1110. GET /live/issue/ | issue.js
  1111. GET /live/list | live.js
  1112. GET /live/live_cart/ | liveCart.js
  1113. GET /live/live_cart/list | liveCart.js
  1114. GET /live/live_order_item/ | liveOrderItem.js
  1115. GET /live/live_order_item/list | liveOrderItem.js
  1116. GET /live/liveAfterSalesItem/ | liveAfterSalesItem.js
  1117. GET /live/liveAfterSalesItem/export | liveAfterSalesItem.js
  1118. GET /live/liveAfterSalesItem/list | liveAfterSalesItem.js
  1119. GET /live/liveAfterSalesLogs/ | liveAfterSalesLogs.js
  1120. GET /live/liveAfterSalesLogs/export | liveAfterSalesLogs.js
  1121. GET /live/liveAfterSalesLogs/list | liveAfterSalesLogs.js
  1122. GET /live/liveEventConf/ | liveEventConf.js
  1123. GET /live/liveEventConf/export | liveEventConf.js
  1124. GET /live/liveEventConf/list | liveEventConf.js
  1125. GET /live/liveLotteryProductConf/ | liveLotteryProductConf.js
  1126. GET /live/liveLotteryProductConf/export | liveLotteryProductConf.js
  1127. GET /live/liveLotteryProductConf/list | liveLotteryProductConf.js
  1128. GET /live/liveOrder/ | liveOrder.js
  1129. GET /live/liveOrderStatus/ | liveOrderStatus.js
  1130. GET /live/liveOrderStatus/export | liveOrderStatus.js
  1131. GET /live/liveOrderStatus/list | liveOrderStatus.js
  1132. GET /live/liveQuestion/ | liveQuestion.js
  1133. GET /live/liveQuestion/export | liveQuestion.js
  1134. GET /live/liveQuestion/list | liveQuestion.js
  1135. GET /live/liveQuestionBank/list | liveQuestionBank.js
  1136. GET /live/liveQuestionLive/list | liveQuestionLive.js
  1137. GET /live/liveQuestionLive/optionList | liveQuestionLive.js
  1138. GET /live/liveUserRedRecord/ | liveUserRedRecord.js
  1139. GET /live/liveUserRedRecord/export | liveUserRedRecord.js
  1140. GET /live/liveUserRedRecord/list | liveUserRedRecord.js
  1141. GET /live/order/payment | liveOrderPayment.js
  1142. GET /live/order/payment/ | liveOrderPayment.js
  1143. GET /live/order/payment/export | liveOrderPayment.js
  1144. GET /live/trafficLog/ | liveTrafficLog.js
  1145. GET /live/trafficLog/export | liveTrafficLog.js
  1146. GET /live/trafficLog/list | liveTrafficLog.js
  1147. GET /liveData/ | liveData.js
  1148. GET /liveData/list | liveData.js
  1149. GET /moduleUsage/ | moduleUsage.js
  1150. GET /moduleUsage/list | moduleUsage.js
  1151. GET /monitor/cache | cache.js
  1152. GET /monitor/online/list | online.js
  1153. GET /monitor/server | server.js
  1154. GET /order/importDeliveryNoteTemplate | mergedOrder.js
  1155. GET /product/ | product.js
  1156. GET /product/list | product.js
  1157. GET /proxy/ | proxy.js
  1158. GET /proxy/list | proxy.js
  1159. GET /push/push/ | push.js
  1160. GET /push/push/export | push.js
  1161. GET /push/push/list | push.js
  1162. GET /qw/analyze/list | qwAnalyze.js
  1163. GET /qw/contact/list/ | im.js
  1164. GET /qw/contact/listByUser/ | im.js
  1165. GET /qw/course/courseAnswerLog/ | courseAnswerlogs.js
  1166. GET /qw/customerProperty/list | customerProperty.js
  1167. GET /qw/externalContactCrm/ | externalContactCrm.js
  1168. GET /qw/externalContactTransferCompanyAudit/ | externalContactTransferCompanyAudit.js
  1169. GET /qw/externalContactTransferCompanyAudit/detail/ | externalContactTransferAudit.js
  1170. GET /qw/group_chat_user/ | group_chat_user.js
  1171. GET /qw/groupChat/ | groupChat.js
  1172. GET /qw/groupMsgItem/ | groupMsgItem.js
  1173. GET /qw/groupMsgItem/export | groupMsgItem.js
  1174. GET /qw/groupMsgItem/list | groupMsgItem.js
  1175. GET /qw/message/export/ | im.js
  1176. GET /qw/qwAppContactWayLogs/ | qwAppContactWayLogs.js
  1177. GET /qw/qwAppContactWayLogs/export | qwAppContactWayLogs.js
  1178. GET /qw/qwAppContactWayLogs/list | qwAppContactWayLogs.js
  1179. GET /qw/qwCompany/ | qwCompany.js
  1180. GET /qw/qwCompany/all | qwCompany.js
  1181. GET /qw/qwCompany/export | qwCompany.js
  1182. GET /qw/qwCompany/list | qwCompany.js
  1183. GET /qw/qwInformation/ | qwInformation.js
  1184. GET /qw/qwInformation/export | qwInformation.js
  1185. GET /qw/qwInformation/list | qwInformation.js
  1186. GET /qw/qwInformation/statistics | qwInformation.js
  1187. GET /qw/qwIpadServer/ | qwIpadServer.js
  1188. GET /qw/qwIpadServer/export | qwIpadServer.js
  1189. GET /qw/qwIpadServer/list | qwIpadServer.js
  1190. GET /qw/qwIpadServerLog/ | qwIpadServerLog.js
  1191. GET /qw/qwIpadServerLog/export | qwIpadServerLog.js
  1192. GET /qw/qwIpadServerLog/ipadServerLogList | qwIpadServerLog.js
  1193. GET /qw/qwIpadServerUser/ | qwIpadServerUser.js
  1194. GET /qw/qwIpadServerUser/export | qwIpadServerUser.js
  1195. GET /qw/qwIpadServerUser/ipadServerUserList | qwIpadServerUser.js
  1196. GET /qw/qwPushCount/ | qwPushCount.js
  1197. GET /qw/qwPushCount/list | qwPushCount.js
  1198. GET /qw/qwPushCount/tokenList/export | fastGptPushTokenTotal.js
  1199. GET /qw/record/ | record.js
  1200. GET /qw/record/list | record.js
  1201. GET /qw/records/ | applyIpad.js
  1202. GET /qw/records/apply | applyIpad.js
  1203. GET /qw/records/export | applyIpad.js
  1204. GET /qw/records/list | applyIpad.js
  1205. GET /qw/records/server/ | applyIpad.js
  1206. GET /qw/room/roomDetail/ | im.js
  1207. GET /qw/workLink/ | workLink.js
  1208. GET /qw/workLink/export | workLink.js
  1209. GET /qw/workLink/list | workLink.js
  1210. GET /qw/workLink/listAll | workLink.js
  1211. GET /qw/workLinkUser/ | workLinkUser.js
  1212. GET /qw/workLinkUser/export | workLinkUser.js
  1213. GET /qw/workLinkUser/list | workLinkUser.js
  1214. GET /qw/workUser/ | workUser.js
  1215. GET /qw/workUser/export | workUser.js
  1216. GET /qw/workUser/list | workUser.js
  1217. GET /qwAssignRule/ | assignRule.js
  1218. GET /qwCustomerLink/ | customerLink.js
  1219. GET /qwExternalContact/ | qwExternalContact.js
  1220. GET /qwExternalContact/list | qwExternalContact.js
  1221. GET /qwGroupActual/ | groupActual.js
  1222. GET /qwGroupLiveCode/ | groupLiveCode.js
  1223. GET /qwSop/sopUserLogsInfo/ | sopUserLogsInfo.js
  1224. GET /rechargeRecord/ | rechargeRecord.js
  1225. GET /rechargeRecord/list | rechargeRecord.js
  1226. GET /recharge-templates/ | template.js
  1227. GET /recharge-templates/getCouponList | template.js
  1228. GET /redPacket/more/ | redPacketConfig.js
  1229. GET /redPacket/more/export | redPacketConfig.js
  1230. GET /redPacket/more/getRedPacketConfig | redPacketConfig.js
  1231. GET /redPacket/more/list | redPacketConfig.js
  1232. GET /shop/msg/ | msg.js
  1233. GET /shop/records/ | records.js
  1234. GET /shop/role/ | role.js
  1235. GET /sop/ | sop.js
  1236. GET /sop/companySopRole/ | companySopRole.js
  1237. GET /sop/companySopRole/export | companySopRole.js
  1238. GET /sop/companySopRole/list | companySopRole.js
  1239. GET /sop/list | sop.js
  1240. GET /statistic/manage/getSearchCompanyInfo | statistics.js
  1241. GET /statistic/manage/getSearchDeptInfo | statistics.js
  1242. GET /statistic/manage/getSearchUserInfo | statistics.js
  1243. GET /stats/member/dailyData | member.js
  1244. GET /store/ | store.js
  1245. GET /store/adv/ | adv.js
  1246. GET /store/answer/ | answer.js
  1247. GET /store/answer/allList | answer.js
  1248. GET /store/company/companyUser/getAllUserListLimit | user.js
  1249. GET /store/coupon/ | coupon.js
  1250. GET /store/doctor/ | doctor.js
  1251. GET /store/doctor/allFollowDoctorList | doctor.js
  1252. GET /store/doctor/doc/list | doctor.js
  1253. GET /store/doctor/export | doctor.js
  1254. GET /store/doctor/followDoctorList | doctor.js
  1255. GET /store/doctor/getWxaCodeUnLimit | doctor.js
  1256. GET /store/doctor/list | doctor.js
  1257. GET /store/doctor/user/list | doctor.js
  1258. GET /store/doctor/userdoc/list | doctor.js
  1259. GET /store/drugReport/ | drugReport.js
  1260. GET /store/drugReportCount/ | drugReportCount.js
  1261. GET /store/followTemp/ | followTemp.js
  1262. GET /store/healthData/ | healthData.js
  1263. GET /store/healthLife/ | healthLife.js
  1264. GET /store/healthStoreOrder/ | healthStoreOrder.js
  1265. GET /store/healthTongue/ | healthTongue.js
  1266. GET /store/healthTongue/export | healthTongue.js
  1267. GET /store/healthTongue/list | healthTongue.js
  1268. GET /store/healthTongue/myExport | healthTongue.js
  1269. GET /store/healthTongue/myList | healthTongue.js
  1270. GET /store/his/chineseMedicine/ | chineseMedicine.js
  1271. GET /store/his/chineseMedicine/export | chineseMedicine.js
  1272. GET /store/his/chineseMedicine/importTemplate | chineseMedicine.js
  1273. GET /store/his/chineseMedicine/list | chineseMedicine.js
  1274. GET /store/his/department/ | department.js
  1275. GET /store/his/department/export | department.js
  1276. GET /store/his/department/list | department.js
  1277. GET /store/his/department/listOptions | disease.js
  1278. GET /store/his/disease/ | disease.js
  1279. GET /store/his/disease/export | disease.js
  1280. GET /store/his/disease/list | disease.js
  1281. GET /store/his/doctor/userdoc/list | doctorArticle.js
  1282. GET /store/his/doctorArticle/ | doctorArticle.js
  1283. GET /store/his/doctorArticle/export | doctorArticle.js
  1284. GET /store/his/doctorArticle/list | doctorArticle.js
  1285. GET /store/his/famousPrescribe/ | famousPrescribe.js
  1286. GET /store/his/famousPrescribe/export | famousPrescribe.js
  1287. GET /store/his/famousPrescribe/list | famousPrescribe.js
  1288. GET /store/his/illnessLibrary/ | illnessLibrary.js
  1289. GET /store/his/illnessLibrary/export | illnessLibrary.js
  1290. GET /store/his/illnessLibrary/getIllness/ | illnessLibrary.js
  1291. GET /store/his/illnessLibrary/list | illnessLibrary.js
  1292. GET /store/his/integralOrder/ | integralOrder.js
  1293. GET /store/his/integralOrder/export | integralOrder.js
  1294. GET /store/his/integralOrder/getExpress/ | integralOrder.js
  1295. GET /store/his/integralOrder/importTemplate | integralOrder.js
  1296. GET /store/his/integralOrder/list | integralOrder.js
  1297. GET /store/his/integralOrder/queryPhone/ | integralOrder.js
  1298. GET /store/his/medicatedFood/ | medicatedFood.js
  1299. GET /store/his/medicatedFood/export | medicatedFood.js
  1300. GET /store/his/medicatedFood/importTemplate | medicatedFood.js
  1301. GET /store/his/medicatedFood/list | medicatedFood.js
  1302. GET /store/his/questions/importTemplate | vessel.js
  1303. GET /store/his/store/ | store.js
  1304. GET /store/his/store/auditLog/ | store.js
  1305. GET /store/his/store/export | store.js
  1306. GET /store/his/testReport/ | testReport.js
  1307. GET /store/his/testReport/export | testReport.js
  1308. GET /store/his/testReport/list | testReport.js
  1309. GET /store/his/testTemp/ | testTemp.js
  1310. GET /store/his/testTemp/allList | testTemp.js
  1311. GET /store/his/testTemp/export | testTemp.js
  1312. GET /store/his/testTemp/getTempType/ | testTemp.js
  1313. GET /store/his/testTemp/list | testTemp.js
  1314. GET /store/his/testTempItem/ | testTempItem.js
  1315. GET /store/his/testTempItem/export | testTempItem.js
  1316. GET /store/his/testTempItem/list | testTempItem.js
  1317. GET /store/his/vessel/ | vessel.js
  1318. GET /store/his/vessel/allList | vessel.js
  1319. GET /store/his/vessel/export | vessel.js
  1320. GET /store/his/vessel/list | vessel.js
  1321. GET /store/homeArticle/ | homeArticle.js
  1322. GET /store/homeCategory/ | homeCategory.js
  1323. GET /store/homeView/ | homeView.js
  1324. GET /store/icd/ | icd.js
  1325. GET /store/list | store.js
  1326. GET /store/menu/ | menu.js
  1327. GET /store/operlogScrm/export | operlog.js
  1328. GET /store/operlogScrm/getMains | operlog.js
  1329. GET /store/operlogScrm/list | operlog.js
  1330. GET /store/packageCate/ | packageCate.js
  1331. GET /store/prescribeDrug/ | prescribeDrug.js
  1332. GET /store/price/getDoctorPrice/ | doctor.js
  1333. GET /store/PromotionOrder/ | PromotionOrder.js
  1334. GET /store/recommend/ | recommend.js
  1335. GET /store/recommend/export | recommend.js
  1336. GET /store/shippingTemplates/ | shippingTemplates.js
  1337. GET /store/shippingTemplatesFree/ | shippingTemplatesFree.js
  1338. GET /store/shippingTemplatesFree/export | shippingTemplatesFree.js
  1339. GET /store/shippingTemplatesRegion/ | shippingTemplatesRegion.js
  1340. GET /store/shippingTemplatesRegion/export | shippingTemplatesRegion.js
  1341. GET /store/store/menu/export | menu.js
  1342. GET /store/store/menu/list | menu.js
  1343. GET /store/store/prescribe/export | prescribe.js
  1344. GET /store/store/prescribe/list | prescribe.js
  1345. GET /store/store/prescribeDrug/export | prescribeDrug.js
  1346. GET /store/store/prescribeDrug/list | prescribeDrug.js
  1347. GET /store/store/shippingTemplates/export | shippingTemplates.js
  1348. GET /store/store/shippingTemplates/getAllList | shippingTemplates.js
  1349. GET /store/store/shippingTemplates/list | shippingTemplates.js
  1350. GET /store/store/statistics/storeOrderStatistics | statistics.js
  1351. GET /store/store/statistics/storeProduct | statistics.js
  1352. GET /store/store/storeAfterSalesItem/export | storeAfterSalesItem.js
  1353. GET /store/store/storeAfterSalesItem/list | storeAfterSalesItem.js
  1354. GET /store/store/storeAfterSalesStatus/export | storeAfterSalesStatus.js
  1355. GET /store/store/storeAfterSalesStatus/list | storeAfterSalesStatus.js
  1356. GET /store/store/storeCart/export | storeCart.js
  1357. GET /store/store/storeCart/list | storeCart.js
  1358. GET /store/store/storeOrder/statistics/getStoreOrderStatistics | statistics.js
  1359. GET /store/store/storeOrderItem/export | storeOrderItem.js
  1360. GET /store/store/storeOrderItem/list | storeOrderItem.js
  1361. GET /store/store/storeOrderNotice/export | storeOrderNotice.js
  1362. GET /store/store/storeOrderNotice/list | storeOrderNotice.js
  1363. GET /store/store/storeOrderStatus/export | storeOrderStatus.js
  1364. GET /store/store/storeOrderStatus/list | storeOrderStatus.js
  1365. GET /store/store/storeProductAttr/export | storeProductAttr.js
  1366. GET /store/store/storeProductAttr/list | storeProductAttr.js
  1367. GET /store/store/storeProductAttrValue/export | storeProductAttrValue.js
  1368. GET /store/store/storeProductAttrValue/list | storeProductAttrValue.js
  1369. GET /store/store/storeProductCategory/export | storeProductCategory.js
  1370. GET /store/store/storeProductCategory/list | storeProductCategory.js
  1371. GET /store/store/storeProductDetails/export | storeProductDetails.js
  1372. GET /store/store/storeProductDetails/list | storeProductDetails.js
  1373. GET /store/store/storeProductGroup/export | storeProductGroup.js
  1374. GET /store/store/storeProductGroup/list | storeProductGroup.js
  1375. GET /store/store/storeProductRelation/export | storeProductRelation.js
  1376. GET /store/store/storeProductRelation/list | storeProductRelation.js
  1377. GET /store/store/storeProductReply/export | storeProductReply.js
  1378. GET /store/store/storeProductReply/list | storeProductReply.js
  1379. GET /store/store/storeProductRule/export | storeProductRule.js
  1380. GET /store/store/storeProductRule/getAllList | storeProductRule.js
  1381. GET /store/store/storeProductRule/list | storeProductRule.js
  1382. GET /store/store/storeProductTemplate/export | storeProductTemplate.js
  1383. GET /store/store/storeProductTemplate/list | storeProductTemplate.js
  1384. GET /store/store/storeProductYuyue/export | storeProductYuyue.js
  1385. GET /store/store/storeProductYuyue/list | storeProductYuyue.js
  1386. GET /store/store/storeShop/export | storeShop.js
  1387. GET /store/store/storeShop/list | storeShop.js
  1388. GET /store/store/storeShopStaff/export | storeShopStaff.js
  1389. GET /store/store/storeShopStaff/list | storeShopStaff.js
  1390. GET /store/store/storeVisit/export | storeVisit.js
  1391. GET /store/store/storeVisit/list | storeVisit.js
  1392. GET /store/store/user/darkRoomList | user.js
  1393. GET /store/store/user/export | user.js
  1394. GET /store/store/user/getUserList | user.js
  1395. GET /store/store/user/list | user.js
  1396. GET /store/store/user/listBySearch | user.js
  1397. GET /store/store/user/listProject | user.js
  1398. GET /store/store/user/queryvo/ | user.js
  1399. GET /store/store/userAddress/export | userAddress.js
  1400. GET /store/store/userAddress/getAddressList | userAddress.js
  1401. GET /store/store/userAddress/list | userAddress.js
  1402. GET /store/storeActivity/ | storeActivity.js
  1403. GET /store/storeActivity/export | storeActivity.js
  1404. GET /store/storeAfterSalesItem/ | storeAfterSalesItem.js
  1405. GET /store/storeAfterSalesStatus/ | storeAfterSalesStatus.js
  1406. GET /store/storeCart/ | storeCart.js
  1407. GET /store/storeCoupon/ | storeCoupon.js
  1408. GET /store/storeCoupon/export | storeCoupon.js
  1409. GET /store/storeCouponIssue/ | storeCouponIssue.js
  1410. GET /store/storeCouponIssue/export | storeCouponIssue.js
  1411. GET /store/storeCouponIssueUser/ | storeCouponIssueUser.js
  1412. GET /store/storeCouponIssueUser/export | storeCouponIssueUser.js
  1413. GET /store/storeCouponUser/ | storeCouponUser.js
  1414. GET /store/storeCouponUser/export | storeCouponUser.js
  1415. GET /store/storeOrderAudit/ | storeOrderAudit.js
  1416. GET /store/storeOrderItem/ | storeOrderItem.js
  1417. GET /store/storeOrderNotice/ | storeOrderNotice.js
  1418. GET /store/storeOrderOffline/ | storeOrderOffline.js
  1419. GET /store/storeOrderOffline/export | storeOrderOffline.js
  1420. GET /store/storeOrderOffline/myList | storeOrderOffline.js
  1421. GET /store/storeOrderStatus/ | storeOrderStatus.js
  1422. GET /store/storeProductAttr/ | storeProductAttr.js
  1423. GET /store/storeProductAttrValue/ | storeProductAttrValue.js
  1424. GET /store/storeProductDetails/ | storeProductDetails.js
  1425. GET /store/storeProductGroup/ | storeProductGroup.js
  1426. GET /store/storeProductRelation/ | storeProductRelation.js
  1427. GET /store/storeProductReply/ | storeProductReply.js
  1428. GET /store/storeProductRule/ | storeProductRule.js
  1429. GET /store/storeProductTemplate/ | storeProductTemplate.js
  1430. GET /store/storeShop/ | storeShop.js
  1431. GET /store/storeShopStaff/ | storeShopStaff.js
  1432. GET /store/storeVisit/ | storeVisit.js
  1433. GET /store/user/user/list/ | user.js
  1434. GET /store/userPromoterApply/ | userPromoterApply.js
  1435. GET /store/userPromoterApply/export | userPromoterApply.js
  1436. GET /storeOrder/ | storeOrder.js
  1437. GET /storeOrder/list | storeOrder.js
  1438. GET /storeOrderOfflineItem/store/ | store.js
  1439. GET /sysCompany/ | sysCompany.js
  1440. GET /sysCompany/list | sysCompany.js
  1441. GET /system/channel/list | employeeStats.js
  1442. GET /system/companyVoiceDialog/ | companyVoiceDialog.js
  1443. GET /system/companyVoiceRobotic/ | companyVoiceRobotic.js
  1444. GET /system/companyVoiceRoboticCallees/ | companyVoiceRoboticCallees.js
  1445. GET /system/config/ | config.js
  1446. GET /system/config/configKey/ | config.js
  1447. GET /system/config/export | config.js
  1448. GET /system/config/getConfigByKey/ | config.js
  1449. GET /system/config/list | config.js
  1450. GET /system/config/updateIsTownOn | config.js
  1451. GET /system/dept/ | dept.js
  1452. GET /system/dept/list | dept.js
  1453. GET /system/dept/list/exclude/ | dept.js
  1454. GET /system/dept/roleDeptTreeselect/ | dept.js
  1455. GET /system/dept/treeselect | dept.js
  1456. GET /system/dict/data/ | data.js
  1457. GET /system/dict/type/ | type.js
  1458. GET /system/employee/list | employeeStats.js
  1459. GET /system/employeeStats/ | employeeStats.js
  1460. GET /system/keyword/ | keyword.js
  1461. GET /system/keyword/export | keyword.js
  1462. GET /system/keyword/list | keyword.js
  1463. GET /system/menu/ | menu.js
  1464. GET /system/menu/list | menu.js
  1465. GET /system/menu/roleMenuTreeselect/ | menu.js
  1466. GET /system/menu/treeselect | menu.js
  1467. GET /system/notice/ | notice.js
  1468. GET /system/notice/list | notice.js
  1469. GET /system/post/ | post.js
  1470. GET /system/post/export | post.js
  1471. GET /system/post/list | post.js
  1472. GET /system/resourceM/getCompanyResource/ | resourceManagement.js
  1473. GET /system/resourceM/getDeptResource/ | resourceManagement.js
  1474. GET /system/role/ | role.js
  1475. GET /system/role/authUser/allocatedList | role.js
  1476. GET /system/role/authUser/unallocatedList | role.js
  1477. GET /system/role/export | role.js
  1478. GET /system/role/list | role.js
  1479. GET /system/set/ | set.js
  1480. GET /system/set/export | set.js
  1481. GET /system/set/list | set.js
  1482. GET /system/tag/list | fsUser.js
  1483. GET /system/user/ | user.js
  1484. GET /system/user/authRole/ | user.js
  1485. GET /system/user/company/list | fsUser.js
  1486. GET /system/user/export | user.js
  1487. GET /system/user/importTemplate | user.js
  1488. GET /system/user/isAdmin | user.js
  1489. GET /system/user/list | user.js
  1490. GET /system/user/profile | user.js
  1491. GET /sysUser/ | sysUser.js
  1492. GET /sysUser/list | sysUser.js
  1493. GET /tenant/ | tenant.js
  1494. GET /tenant/list | tenant.js
  1495. GET /tenant/record/ | record.js
  1496. GET /tenant/record/export | record.js
  1497. GET /tenant/record/list | record.js
  1498. GET /tenant/tenant/ | tenant.js
  1499. GET /tenant/tenant/export | tenant.js
  1500. GET /tenant/tenant/getTenantComMenu/ | menu.js
  1501. GET /tenant/tenant/list | tenant.js
  1502. GET /tenant/tenant/tenantComMenu/list | menu.js
  1503. GET /tenant/tenant/tenantList | tenant.js
  1504. GET /tenant/tenant/tenantMenu/ | menu.js
  1505. GET /tenant/tenant/tenantMenu/list | menu.js
  1506. GET /todoItems/getExecutorList | todoItems.js
  1507. GET /tools/user/ | user.js
  1508. GET /tools/user/export | user.js
  1509. GET /tools/user/list | user.js
  1510. GET /tools/userCoinLog/ | userCoinLog.js
  1511. GET /tools/userCoinLog/export | userCoinLog.js
  1512. GET /tools/userCoinLog/list | userCoinLog.js
  1513. GET /tools/videoOrder/ | videoOrder.js
  1514. GET /tools/videoOrder/export | videoOrder.js
  1515. GET /tools/videoOrder/list | videoOrder.js
  1516. GET /tools/vipOrder/ | vipOrder.js
  1517. GET /tools/vipOrder/export | vipOrder.js
  1518. GET /tools/vipOrder/list | vipOrder.js
  1519. GET /user/complaint/ | complaint.js
  1520. GET /user/complaint/export | complaint.js
  1521. GET /user/complaint/list | complaint.js
  1522. GET /user/integral/list | integral.js
  1523. GET /user/integral/logs/ | integral.js
  1524. GET /user/msg/ | complaint.js
  1525. GET /user/msg/export | complaint.js
  1526. GET /user/msg/list | complaint.js
  1527. GET /users/user/ | user.js
  1528. GET /users/user/getUserList | user.js
  1529. GET /users/user/list | user.js
  1530. GET /users/user/myList | user.js
  1531. GET /watch-api/device/ | deviceInfo.js
  1532. GET /watch-api/device/export | deviceInfo.js
  1533. GET /watch-api/device/getAddCountByMonth | deviceInfo.js
  1534. GET /watch-api/device/getByNumber | deviceInfo.js
  1535. GET /watch-api/device/list | deviceInfo.js
  1536. GET /watch-api/device/queryLastWatchData | deviceInfo.js
  1537. GET /watch-api/device/querySos | deviceInfo.js
  1538. GET /watch-api/device/set/up/autoaf | deviceInfoSet.js
  1539. GET /watch-api/device/set/up/autolocate | deviceInfoSet.js
  1540. GET /watch-api/device/set/up/clockalarm/clear | deviceInfoSet.js
  1541. GET /watch-api/device/set/up/datafreq | deviceInfoSet.js
  1542. GET /watch-api/device/set/up/datasync | deviceInfoSet.js
  1543. GET /watch-api/device/set/up/factory/reset | deviceInfoSet.js
  1544. GET /watch-api/device/set/up/fallcheck | deviceInfoSet.js
  1545. GET /watch-api/device/set/up/fallcheck/sensitivity | deviceInfoSet.js
  1546. GET /watch-api/device/set/up/getSet | deviceInfoSet.js
  1547. GET /watch-api/device/set/up/lcdgesture | deviceInfoSet.js
  1548. GET /watch-api/device/set/up/measure/interval/hr | deviceInfoSet.js
  1549. GET /watch-api/device/set/up/measure/interval/other | deviceInfoSet.js
  1550. GET /watch-api/device/set/up/message | deviceInfoSet.js
  1551. GET /watch-api/device/set/up/phonebook/clear | deviceInfoSet.js
  1552. GET /watch-api/device/set/up/realtime/location | deviceInfoSet.js
  1553. GET /watch-api/device/set/up/sedentary/clear | deviceInfoSet.js
  1554. GET /watch-api/device/set/up/temperature/alarm | deviceInfoSet.js
  1555. GET /watch-api/materials/ | materials.js
  1556. GET /watch-api/materials/export | materials.js
  1557. GET /watch-api/materials/list | materials.js
  1558. GET /watch-api/type/ | materialsType.js
  1559. GET /watch-api/type/export | materialsType.js
  1560. GET /watch-api/type/list | materialsType.js
  1561. GET /watch-api/watch/basic/info/page | deviceInfo.js
  1562. GET /watch-api/watch/basic/info/queryGnssByDateAndDeviceId | deviceInfo.js
  1563. GET /watch-api/watch/continuous/spo2/data/queryPageByDateAndDeviceId | deviceInfo.js
  1564. GET /watch-api/watch/deviceInfo/query | deviceInfo.js
  1565. GET /watch-api/watch/heart/rate/page | deviceInfo.js
  1566. GET /watch-api/watch/sleep/data/exportByDate | deviceInfo.js
  1567. GET /watch-api/watch/sleep/data/page | deviceInfo.js
  1568. GET /watch-api/watch/sport/data/queryPageByDataAndDeviceId | deviceInfo.js
  1569. GET /watch-api/watch/temperature/page | deviceInfo.js
  1570. GET /watch-api/watch/third/bk/queryByDateAndDeviceId | deviceInfo.js
  1571. GET /watch-api/watch/third/ua/queryByDateAndDeviceId | deviceInfo.js
  1572. GET /wechat/bind/qrcode | wechat.js
  1573. GET /withdrawalManage/ | withdrawalManage.js
  1574. GET /withdrawalManage/list | withdrawalManage.js
  1575. GET /workflow/ai-generator/result/ | workflowLobster.js
  1576. GET /workflow/lobster-admin/api-registry | lobster-admin.js
  1577. GET /workflow/lobster-admin/billing-records | lobster-admin.js
  1578. GET /workflow/lobster-admin/chat-aggregate | lobster-admin.js
  1579. GET /workflow/lobster-admin/companies | lobster-admin.js
  1580. GET /workflow/lobster-admin/company-stats/ | lobster-admin.js
  1581. GET /workflow/lobster-admin/dead-letters | lobster-admin.js
  1582. GET /workflow/lobster-admin/event-audits | lobster-admin.js
  1583. GET /workflow/lobster-admin/instances | lobster-admin.js
  1584. GET /workflow/lobster-admin/optimizations | lobster-admin.js
  1585. GET /workflow/lobster-admin/platform-stats | lobster-admin.js
  1586. GET /workflow/lobster-admin/prompts | lobster-admin.js
  1587. GET /workflow/lobster-admin/sales-corpus | lobster-admin.js
  1588. GET /workflow/tag-binding/list | tagBinding.js
  1589. GET /workflow/tag-binding/listByStatus | tagBinding.js
  1590. GET /workflow/template/ | workflowLobster.js
  1591. GET /wx/wxSop/ | wxSop.js
  1592. GET /wx/wxSop/export | wxSop.js
  1593. GET /wx/wxSopLogs/ | wxSopLogs.js
  1594. GET /wx/wxSopLogs/export | wxSopLogs.js
  1595. GET /wx/wxSopLogs/list | wxSopLogs.js
  1596. GET /wx/wxSopLogs/listCVO | wxSopLogs.js
  1597. GET /wx/wxSopUser/ | wxSopUser.js
  1598. GET /wx/wxSopUser/export | wxSopUser.js
  1599. GET /wx/wxSopUser/list | wxSopUser.js
  1600. GET /wx/wxSopUserInfo/ | wxSopUserInfo.js
  1601. GET /wx/wxSopUserInfo/export | wxSopUserInfo.js
  1602. GET /wx/wxSopUserInfo/list | wxSopUserInfo.js
  1603. GET /wxSop/sopUserLogsWx/ | sopUserLogsWx.js
  1604. GET /wxSop/sopUserLogsWx/detail/ | sopUserLogsWx.js
  1605. GET /wxSop/sopUserLogsWx/export | sopUserLogsWx.js
  1606. GET /wxSop/sopUserLogsWx/list | sopUserLogsWx.js
  1607. POST /ad | ad.js
  1608. POST /ad/adDomain | adDomain.js
  1609. POST /ad/AdDyAccount | AdDyAccount.js
  1610. POST /ad/adDyApi | adDyApi.js
  1611. POST /ad/AdIqiyiAccount | AdIqiyiAccount.js
  1612. POST /ad/adSite | adSite.js
  1613. POST /ad/AdUploadLog | AdUploadLog.js
  1614. POST /ad/AdYouKuAccount | AdYouKuaccount.js
  1615. POST /ad/clickLog | clickLog.js
  1616. POST /ad/html/template | htmlTemplate.js
  1617. POST /admin/medical/indicator/add | indicator.js
  1618. POST /admin/medical/report/add | report.js
  1619. POST /admin/medical/result/add | reportIndicator.js
  1620. POST /admin/medical/result/batchAdd | reportIndicator.js
  1621. POST /admin/medical/unit/add | unit.js
  1622. POST /adv/advertiser/enable/ | advertiser.js
  1623. POST /adv/site-statistics/refresh/ | siteStatistics.js
  1624. POST /aiChatQuality | aiChatQuality.js
  1625. POST /aiob/AiobBaiduCallApi | AiobBaiduCallApi.js
  1626. POST /aiob/AiobBaiduEncryption | AiobBaiduEncryption.js
  1627. POST /aiob/AiobBaiduTask | AiobBaiduTask.js
  1628. POST /aiProvider | aiProvider.js
  1629. POST /api/fee/plan/create | billing.js
  1630. POST /api/fee/plan/flow-tier/save | billing.js
  1631. POST /api/fee/plan/item/save | billing.js
  1632. POST /api/fee/statement/generate | billing.js
  1633. POST /api/fee/tenant/bind-plan | billing.js
  1634. POST /api/fee/tenant/change-billing-mode | billing.js
  1635. POST /api/fee/tenant/change-type | billing.js
  1636. POST /api/fee/usage/report | billing.js
  1637. POST /api/fee/wallet/recharge | billing.js
  1638. POST /article | article.js
  1639. POST /bd/BdAccount | BdAccount.js
  1640. POST /callRecord | callRecord.js
  1641. POST /callRecord/export | callRecord.js
  1642. POST /commissionRecord | commissionRecord.js
  1643. POST /common/getSignature | common.js
  1644. POST /company | company.js
  1645. POST /company/addwx | addwx.js
  1646. POST /company/aiWorkflow/uploadVoice | aiWorkflow.js
  1647. POST /company/callphone | callphone.js
  1648. POST /company/company | company.js
  1649. POST /company/company/batchUpdateLiveShow | company.js
  1650. POST /company/company/deduct | company.js
  1651. POST /company/company/recharge | company.js
  1652. POST /company/company/resetPwd/ | company.js
  1653. POST /company/companyOperLog | companyOperLog.js
  1654. POST /company/companyRecharge/audit | companyRecharge.js
  1655. POST /company/companyRedPacketBalanceLogs | companyRedPacketBalanceLogs.js
  1656. POST /company/companySmsPackage | companySmsPackage.js
  1657. POST /company/companyTag | companyTag.js
  1658. POST /company/companyTagGroup | companyTagGroup.js
  1659. POST /company/companyUser | companyUser.js
  1660. POST /company/companyUser/changeCompanyUser | companyUser.js
  1661. POST /company/CompanyUserAll | companyUserAll.js
  1662. POST /company/CompanyUserAll/addCodeUrl | companyUserAll.js
  1663. POST /company/CompanyUserAll/bindDoctorId | companyUserAll.js
  1664. POST /company/CompanyUserAll/updateBatchUserRoles | companyUserAll.js
  1665. POST /company/CompanyUserAll/updateCompanyUserAreaList | companyUserAll.js
  1666. POST /company/companyVoice | companyVoice.js
  1667. POST /company/companyVoiceApi | companyVoiceApi.js
  1668. POST /company/companyVoiceBlacklist | companyVoiceBlacklist.js
  1669. POST /company/companyVoiceCaller | companyVoiceCaller.js
  1670. POST /company/companyVoiceConfig | companyVoiceConfig.js
  1671. POST /company/companyVoiceLogs | companyVoiceLogs.js
  1672. POST /company/companyVoicePackage | companyVoicePackage.js
  1673. POST /company/companyVoicePackageOrder | companyVoicePackageOrder.js
  1674. POST /company/schedule | schedule.js
  1675. POST /company/sendmsg | sendmsg.js
  1676. POST /companyWorkflow/externalApi/ | externalApi.js
  1677. POST /complaint | complaint.js
  1678. POST /complaint/category | category.js
  1679. POST /complaint/list | complaint.js
  1680. POST /complaint/queryAllCategory | complaint.js
  1681. POST /consumeRecord | consumeRecord.js
  1682. POST /course | course.js
  1683. POST /course/courseAnswerLog | courseAnswerLog.js
  1684. POST /course/courseDomainName | courseDomainName.js
  1685. POST /course/courseQuestionBank | courseQuestionBank.js
  1686. POST /course/courseQuestionBank/exportFail | courseQuestionBank.js
  1687. POST /course/courseQuestionCategory | courseQuestionCategory.js
  1688. POST /course/courseWatchComment | courseWatchComment.js
  1689. POST /course/fsCourseProduct | fsCourseProduct.js
  1690. POST /course/fsCourseProductOrder | fsCourseProductOrder.js
  1691. POST /course/fsCourseProductOrder/refund | fsCourseProductOrder.js
  1692. POST /course/fsUserCoursePeriodDays | fsUserCoursePeriodDays.js
  1693. POST /course/period/batchRedPacket/byCompany | userCoursePeriod.js
  1694. POST /course/statistics | statistics.js
  1695. POST /course/trainingCamp | trainingCamp.js
  1696. POST /course/userCourseComment | userCourseComment.js
  1697. POST /course/userCourseCommentLike | userCourseCommentLike.js
  1698. POST /course/userCourseComplaintRecord | userCourseComplaintRecord.js
  1699. POST /course/userCourseComplaintType | userCourseComplaintType.js
  1700. POST /course/userCourseFavorite | userCourseFavorite.js
  1701. POST /course/userCourseNote | userCourseNote.js
  1702. POST /course/userCourseNoteLike | userCourseNoteLike.js
  1703. POST /course/userCourseOrder | userCourseOrder.js
  1704. POST /course/userCourseStudy | userCourseStudy.js
  1705. POST /course/userCourseStudyLog | userCourseStudyLog.js
  1706. POST /course/userTalent | userTalent.js
  1707. POST /course/userTalentFollow | userTalentFollow.js
  1708. POST /course/userVideo/addVideo | userVideo.js
  1709. POST /course/userVideo/auditVideo | userVideo.js
  1710. POST /course/userVideo/pullOff/ | userVideo.js
  1711. POST /course/userVideo/putOn/ | userVideo.js
  1712. POST /course/userVideoComment | userVideoComment.js
  1713. POST /course/userVideoCommentLike | userVideoCommentLike.js
  1714. POST /course/userVideoFavorite | userVideoFavorite.js
  1715. POST /course/userVideoLike | userVideoLike.js
  1716. POST /course/userVideoView | userVideoView.js
  1717. POST /course/userVipOrder | userVipOrder.js
  1718. POST /course/userVipPackage | userVipPackage.js
  1719. POST /course/videoResource | videoResource.js
  1720. POST /course/videoResource/batchAddVideoResource | videoResource.js
  1721. POST /course/videoResource/batchUpdateClass | videoResource.js
  1722. POST /course/videoTags | userVideoTags.js
  1723. POST /courseFinishTemp/course | course.js
  1724. POST /crm | crm.js
  1725. POST /crm/analyze | customerAnalyze.js
  1726. POST /crm/analyze/listAll | customerAnalyze.js
  1727. POST /crm/assist | assist.js
  1728. POST /crm/assist/remove | assist.js
  1729. POST /crm/customer/ | customer.js
  1730. POST /crm/customerHisOrder | customerHisOrder.js
  1731. POST /crm/event | event.js
  1732. POST /crm/msg | msg.js
  1733. POST /crm/third | third.js
  1734. POST /doctorChat/session | aiDoctorChat.js
  1735. POST /fast_gpt/read_package | readPackage.js
  1736. POST /fast_gpt/read_package/export | readPackage.js
  1737. POST /fastGpt/fastGptChatReplaceText | fastGptChatReplaceText.js
  1738. POST /fastGpt/fastGptChatReplaceWords | fastGptChatReplaceWords.js
  1739. POST /fastGpt/FastGptExtUserTag | FastGptExtUserTag.js
  1740. POST /fastGpt/FastGptExtUserTag/addFastGptTagByCorpId | FastGptExtUserTag.js
  1741. POST /fastGpt/role | fastGptRole.js
  1742. POST /fastGpt/role/copy | fastGptRole.js
  1743. POST /FastGptExtUserTag | FastGptExtUserTag.js
  1744. POST /food-record/addRecord | record.js
  1745. POST /food-record/deleteRecord/ | record.js
  1746. POST /food-record/editRecord | record.js
  1747. POST /fsuser/user/transfer | user.js
  1748. POST /his/adv | adv.js
  1749. POST /his/aiWorkflow/copy/ | aiWorkflow.js
  1750. POST /his/aiWorkflow/save | aiWorkflow.js
  1751. POST /his/aiWorkflow/updateWorkflowBindCompanyUser | aiWorkflow.js
  1752. POST /his/answer | answer.js
  1753. POST /his/appVersion | appVersion.js
  1754. POST /his/article | article.js
  1755. POST /his/articleCate | articleCate.js
  1756. POST /his/articleViews | articleViews.js
  1757. POST /his/caseArticle | caseArticle.js
  1758. POST /his/chineseMedicine | chineseMedicine.js
  1759. POST /his/city | city.js
  1760. POST /his/company | company.js
  1761. POST /his/company/deduct | company.js
  1762. POST /his/company/exitMiniProgram | company.js
  1763. POST /his/company/recharge | company.js
  1764. POST /his/company/redDeduct | company.js
  1765. POST /his/company/redRecharge | company.js
  1766. POST /his/company/resetPwd/ | company.js
  1767. POST /his/company/setDiv | company.js
  1768. POST /his/companyDeduct | companyDeduct.js
  1769. POST /his/companyRecharge | companyRecharge.js
  1770. POST /his/complaint | complaint.js
  1771. POST /his/coupon | coupon.js
  1772. POST /his/department | department.js
  1773. POST /his/dfAccount | dfAccount.js
  1774. POST /his/disease | disease.js
  1775. POST /his/divItem | divItem.js
  1776. POST /his/divItem/confirm | divItem.js
  1777. POST /his/doctor | doctor.js
  1778. POST /his/doctorArticle | doctorArticle.js
  1779. POST /his/doctorArticleCate | doctorArticleCate.js
  1780. POST /his/doctorBill | doctorBill.js
  1781. POST /his/doctorExtract | doctorExtract.js
  1782. POST /his/doctorOperLog | doctorOperLog.js
  1783. POST /his/doctorPrescribe | doctorPrescribe.js
  1784. POST /his/doctorPrescribeDrug | doctorPrescribeDrug.js
  1785. POST /his/doctorProduct | doctorProduct.js
  1786. POST /his/drugReport | drugReport.js
  1787. POST /his/drugReportCount | drugReportCount.js
  1788. POST /his/exportTask | exportTask.js
  1789. POST /his/express | express.js
  1790. POST /his/express/allotExpress/ | express.js
  1791. POST /his/famousPrescribe | famousPrescribe.js
  1792. POST /his/followTemp | followTemp.js
  1793. POST /his/fsFirstDiagnosis | fsFirstDiagnosis.js
  1794. POST /his/healthArticle | healthArticle.js
  1795. POST /his/healthData | healthData.js
  1796. POST /his/healthHistoryTemp | healthHistoryTemp.js
  1797. POST /his/healthLife | healthLife.js
  1798. POST /his/healthRecord | healthRecord.js
  1799. POST /his/healthTongue | healthTongue.js
  1800. POST /his/hfpayConfig | hfpayConfig.js
  1801. POST /his/homeArticle | homeArticle.js
  1802. POST /his/homeCategory | homeCategory.js
  1803. POST /his/homeView | homeView.js
  1804. POST /his/hospital | hospital.js
  1805. POST /his/icd | icd.js
  1806. POST /his/illnessLibrary | illnessLibrary.js
  1807. POST /his/inquiryDisease | inquiryDisease.js
  1808. POST /his/inquiryOrder | inquiryOrder.js
  1809. POST /his/inquiryOrder/cancelOrder | inquiryOrder.js
  1810. POST /his/inquiryOrder/refundOrder | inquiryOrder.js
  1811. POST /his/inquiryOrderPing | inquiryOrderPing.js
  1812. POST /his/inquiryOrderReport | inquiryOrderReport.js
  1813. POST /his/inquiryPatientInfo | inquiryPatient.js
  1814. POST /his/inquiryTemp | inquiryTemp.js
  1815. POST /his/logs | logs.js
  1816. POST /his/medicatedFood | medicatedFood.js
  1817. POST /his/merchantAppConfig | merchantAppConfig.js
  1818. POST /his/package | package.js
  1819. POST /his/package/modifyMore | package.js
  1820. POST /his/packageCate | packageCate.js
  1821. POST /his/packageFavorite | packageFavorite.js
  1822. POST /his/packageOrder | packageOrder.js
  1823. POST /his/packageSolarTerm | packageSolarTerm.js
  1824. POST /his/patient | patient.js
  1825. POST /his/pharmacist | pharmacist.js
  1826. POST /his/physicalReportTemplate | physicalReportTemplate.js
  1827. POST /his/physicalReportTemplateField | physicalReportTemplateField.js
  1828. POST /his/physicalReportTemplateField/getTemplateField/ | physicalReportTemplateField.js
  1829. POST /his/physicalReportTemplateField/saveTemplate | physicalReportTemplateField.js
  1830. POST /his/prescribe | prescribe.js
  1831. POST /his/price | price.js
  1832. POST /his/price/editDoctorPrice | doctor.js
  1833. POST /his/promotionActive | promotionActive.js
  1834. POST /his/promotionActiveLog | promotionActiveLog.js
  1835. POST /his/questions | questions.js
  1836. POST /his/store | store.js
  1837. POST /his/storeActivity | storeActivity.js
  1838. POST /his/storeAfterSales | storeAfterSales.js
  1839. POST /his/storeBill | storeBill.js
  1840. POST /his/storeExtract | storeExtract.js
  1841. POST /his/storeLog | storeLog.js
  1842. POST /his/storeOrder | storeOrder.js
  1843. POST /his/storeOrder/batchCreateErpOrder | storeOrder.js
  1844. POST /his/storeOrder/batchSetErpOrder | storeOrder.js
  1845. POST /his/storeOrder/editErpPhone | storeOrder.js
  1846. POST /his/storeOrder/saveErpPhone | storeOrder.js
  1847. POST /his/storeOrder/updateErpOrder | storeOrder.js
  1848. POST /his/storePayment | storePayment.js
  1849. POST /his/storeProduct | storeProduct.js
  1850. POST /his/storeProduct/addOrEdit | storeProduct.js
  1851. POST /his/storeProduct/genFormatAttr/ | storeProduct.js
  1852. POST /his/storeProduct/price/ | storeProduct.js
  1853. POST /his/storeProductCategory | storeProductCategory.js
  1854. POST /his/storeProductPackage | storeProductPackage.js
  1855. POST /his/storeProductPackage/modifyMore | storeProductPackage.js
  1856. POST /his/storeSubOrder | storeSubOrder.js
  1857. POST /his/template | complaint.js
  1858. POST /his/testReport | testReport.js
  1859. POST /his/testTemp | testTemp.js
  1860. POST /his/testTempItem | testTempItem.js
  1861. POST /his/user | user.js
  1862. POST /his/user/addPoints | user.js
  1863. POST /his/user/enabledBlackUsers | user.js
  1864. POST /his/user/enabledUsers | user.js
  1865. POST /his/userAddress | userAddress.js
  1866. POST /his/userBill | userBill.js
  1867. POST /his/userCoupon | userCoupon.js
  1868. POST /his/userCoupon/sendCoupon | userCoupon.js
  1869. POST /his/userExtract | userExtract.js
  1870. POST /his/userExtract/audit | userExtract.js
  1871. POST /his/userIntegralLogs | userIntegralLogs.js
  1872. POST /his/userNewTask | userNewTask.js
  1873. POST /his/userRecharge | userRecharge.js
  1874. POST /his/vessel | vessel.js
  1875. POST /his_store/store_instan_discount_issue | storeInstanDiscountIssue.js
  1876. POST /his_store/store_instan_discount_issue/export | storeInstanDiscountIssue.js
  1877. POST /his_store/store_instant_discount | storeInstantDiscount.js
  1878. POST /his_store/store_instant_discount/export | storeInstantDiscount.js
  1879. POST /his_store/store_instant_discount_user | storeInstantDiscountUser.js
  1880. POST /his_store/store_instant_discount_user/export | storeInstantDiscountUser.js
  1881. POST /hisStore/collection | collection.js
  1882. POST /index/statistics/watchCourseTrend | statistics.js
  1883. POST /live | live.js
  1884. POST /live/comment | comment.js
  1885. POST /live/comment/export | comment.js
  1886. POST /live/coupon/issue/user | liveCouponIssueUser.js
  1887. POST /live/healthLiveOrder | healthLiveOrder.js
  1888. POST /live/issue | issue.js
  1889. POST /live/live_cart | liveCart.js
  1890. POST /live/live_cart/export | liveCart.js
  1891. POST /live/live_order_item | liveOrderItem.js
  1892. POST /live/live_order_item/export | liveOrderItem.js
  1893. POST /live/liveAfterSalesItem | liveAfterSalesItem.js
  1894. POST /live/liveAfterSalesLogs | liveAfterSalesLogs.js
  1895. POST /live/liveEventConf | liveEventConf.js
  1896. POST /live/liveLotteryProductConf | liveLotteryProductConf.js
  1897. POST /live/liveOrder | liveOrder.js
  1898. POST /live/liveOrderStatus | liveOrderStatus.js
  1899. POST /live/liveQuestion | liveQuestion.js
  1900. POST /live/liveQuestionBank | liveQuestionBank.js
  1901. POST /live/liveQuestionLive | liveQuestionLive.js
  1902. POST /live/liveUserRedRecord | liveUserRedRecord.js
  1903. POST /live/trafficLog | liveTrafficLog.js
  1904. POST /liveData | liveData.js
  1905. POST /moduleUsage | moduleUsage.js
  1906. POST /moduleUsage/export | moduleUsage.js
  1907. POST /product | product.js
  1908. POST /proxy | proxy.js
  1909. POST /push/push | push.js
  1910. POST /qw/course/courseAnswerLog | courseAnswerlogs.js
  1911. POST /qw/customerProperty/analyzeAiTagByTrade | customerProperty.js
  1912. POST /qw/externalContactCrm | externalContactCrm.js
  1913. POST /qw/externalContactTransferCompanyAudit | externalContactTransferCompanyAudit.js
  1914. POST /qw/externalContactTransferCompanyAudit/audit | externalContactTransferAudit.js
  1915. POST /qw/group_chat_user | group_chat_user.js
  1916. POST /qw/groupMsgItem | groupMsgItem.js
  1917. POST /qw/message/image | im.js
  1918. POST /qw/qwAppContactWayLogs | qwAppContactWayLogs.js
  1919. POST /qw/qwCompany | qwCompany.js
  1920. POST /qw/qwCompany/setTenant | qwCompany.js
  1921. POST /qw/qwInformation | qwInformation.js
  1922. POST /qw/qwIpadServer | qwIpadServer.js
  1923. POST /qw/qwIpadServerLog | qwIpadServerLog.js
  1924. POST /qw/qwIpadServerUser | qwIpadServerUser.js
  1925. POST /qw/qwPushCount | qwPushCount.js
  1926. POST /qw/record | record.js
  1927. POST /qw/records | applyIpad.js
  1928. POST /qw/records/batchUpdate | applyIpad.js
  1929. POST /qw/records/release | applyIpad.js
  1930. POST /qw/workLink | workLink.js
  1931. POST /qw/workLinkUser | workLinkUser.js
  1932. POST /qw/workUser | workUser.js
  1933. POST /qwCustomerLink/channel/delete/ | customerLink.js
  1934. POST /qwExternalContact | qwExternalContact.js
  1935. POST /qwSop/sopUserLogsInfo | sopUserLogsInfo.js
  1936. POST /rechargeRecord | rechargeRecord.js
  1937. POST /recharge-templates | template.js
  1938. POST /recharge-templates/list | template.js
  1939. POST /redPacket/more | redPacketConfig.js
  1940. POST /redPacket/more/updateChangeMchId | redPacketConfig.js
  1941. POST /saler/serviceGoods/listPage | productInfo.js
  1942. POST /saler/serviceGoods/save | productInfo.js
  1943. POST /saler/serviceGoods/updateById | productInfo.js
  1944. POST /shop/msg | msg.js
  1945. POST /shop/records | records.js
  1946. POST /shop/role | role.js
  1947. POST /sop | sop.js
  1948. POST /sop/companySopRole | companySopRole.js
  1949. POST /statistic/manage/statisticMain | statistics.js
  1950. POST /statistic/manage/statisticMainN | statistics.js
  1951. POST /store | store.js
  1952. POST /store/adv | adv.js
  1953. POST /store/coupon | coupon.js
  1954. POST /store/doctor | doctor.js
  1955. POST /store/healthData | healthData.js
  1956. POST /store/healthLife | healthLife.js
  1957. POST /store/healthStoreOrder | healthStoreOrder.js
  1958. POST /store/healthTongue | healthTongue.js
  1959. POST /store/his/chineseMedicine | chineseMedicine.js
  1960. POST /store/his/department | department.js
  1961. POST /store/his/disease | disease.js
  1962. POST /store/his/doctorArticle | doctorArticle.js
  1963. POST /store/his/famousPrescribe | famousPrescribe.js
  1964. POST /store/his/illnessLibrary | illnessLibrary.js
  1965. POST /store/his/integralOrder | integralOrder.js
  1966. POST /store/his/medicatedFood | medicatedFood.js
  1967. POST /store/his/store | store.js
  1968. POST /store/his/testReport | testReport.js
  1969. POST /store/his/testTemp | testTemp.js
  1970. POST /store/his/testTempItem | testTempItem.js
  1971. POST /store/his/vessel | vessel.js
  1972. POST /store/homeArticle | homeArticle.js
  1973. POST /store/homeCategory | homeCategory.js
  1974. POST /store/homeView | homeView.js
  1975. POST /store/menu | menu.js
  1976. POST /store/prescribeDrug | prescribeDrug.js
  1977. POST /store/price/editDoctorPrice | doctor.js
  1978. POST /store/PromotionOrder | PromotionOrder.js
  1979. POST /store/recommend | recommend.js
  1980. POST /store/shippingTemplates | shippingTemplates.js
  1981. POST /store/shippingTemplatesFree | shippingTemplatesFree.js
  1982. POST /store/shippingTemplatesRegion | shippingTemplatesRegion.js
  1983. POST /store/store/storeProductReply/reply | storeProductReply.js
  1984. POST /store/store/user/enabledUsers | user.js
  1985. POST /store/storeActivity | storeActivity.js
  1986. POST /store/storeAfterSalesItem | storeAfterSalesItem.js
  1987. POST /store/storeAfterSalesStatus | storeAfterSalesStatus.js
  1988. POST /store/storeCart | storeCart.js
  1989. POST /store/storeCoupon | storeCoupon.js
  1990. POST /store/storeCoupon/batchPublish | storeCoupon.js
  1991. POST /store/storeCoupon/publish | storeCoupon.js
  1992. POST /store/storeCouponIssue | storeCouponIssue.js
  1993. POST /store/storeCouponIssueUser | storeCouponIssueUser.js
  1994. POST /store/storeCouponUser | storeCouponUser.js
  1995. POST /store/storeOrderAudit | storeOrderAudit.js
  1996. POST /store/storeOrderItem | storeOrderItem.js
  1997. POST /store/storeOrderNotice | storeOrderNotice.js
  1998. POST /store/storeOrderOffline/createOrder | storeOrderOffline.js
  1999. POST /store/storeOrderOffline/uploadCredentials | storeOrderOffline.js
  2000. POST /store/storeOrderStatus | storeOrderStatus.js
  2001. POST /store/storeProductAttr | storeProductAttr.js
  2002. POST /store/storeProductAttrValue | storeProductAttrValue.js
  2003. POST /store/storeProductDetails | storeProductDetails.js
  2004. POST /store/storeProductGroup | storeProductGroup.js
  2005. POST /store/storeProductRelation | storeProductRelation.js
  2006. POST /store/storeProductReply | storeProductReply.js
  2007. POST /store/storeProductRule | storeProductRule.js
  2008. POST /store/storeProductTemplate | storeProductTemplate.js
  2009. POST /store/storeShop | storeShop.js
  2010. POST /store/storeShopStaff | storeShopStaff.js
  2011. POST /store/storeVisit | storeVisit.js
  2012. POST /store/userPromoterApply | userPromoterApply.js
  2013. POST /storeOrder | storeOrder.js
  2014. POST /storeOrderOfflineItem/store | store.js
  2015. POST /sysCompany | sysCompany.js
  2016. POST /system/companyVoiceDialog | companyVoiceDialog.js
  2017. POST /system/companyVoiceRobotic | companyVoiceRobotic.js
  2018. POST /system/companyVoiceRoboticCallees | companyVoiceRoboticCallees.js
  2019. POST /system/config | config.js
  2020. POST /system/config/updateConfigByKey | config.js
  2021. POST /system/dept | dept.js
  2022. POST /system/dict/data | data.js
  2023. POST /system/dict/type | type.js
  2024. POST /system/employeeStats/export | employeeStats.js
  2025. POST /system/keyword | keyword.js
  2026. POST /system/menu | menu.js
  2027. POST /system/notice | notice.js
  2028. POST /system/post | post.js
  2029. POST /system/role | role.js
  2030. POST /system/set | set.js
  2031. POST /system/user | user.js
  2032. POST /system/user/profile/avatar | user.js
  2033. POST /sysUser | sysUser.js
  2034. POST /sysUser/export | sysUser.js
  2035. POST /tenant | tenant.js
  2036. POST /tenant/record | record.js
  2037. POST /tenant/record/uploadScript | record.js
  2038. POST /tenant/tenant | tenant.js
  2039. POST /tenant/tenant/addTenantComMenu | menu.js
  2040. POST /tenant/tenant/addTenantMenu | menu.js
  2041. POST /tenant/tenant/config/edit | tenant.js
  2042. POST /tenant/tenant/menu | tenant.js
  2043. POST /tenant/tenant/menu/edit | tenant.js
  2044. POST /third/feiyu/getAdvertisers | third.js
  2045. POST /third/feiyu/getClues | third.js
  2046. POST /third/feiyu/oauthCallback | third.js
  2047. POST /todoItems/add | todoItems.js
  2048. POST /todoItems/assignExecutor | todoItems.js
  2049. POST /todoItems/getUserList | todoItems.js
  2050. POST /todoItems/listPage | todoItems.js
  2051. POST /todoItems/updateById | todoItems.js
  2052. POST /tools/user | user.js
  2053. POST /tools/userCoinLog | userCoinLog.js
  2054. POST /tools/videoOrder | videoOrder.js
  2055. POST /tools/vipOrder | vipOrder.js
  2056. POST /user/complaint | complaint.js
  2057. POST /user/integral/add | integral.js
  2058. POST /user/msg | complaint.js
  2059. POST /users/user | user.js
  2060. POST /watch-api/device | deviceInfo.js
  2061. POST /watch-api/device/set/up/bpalarm | deviceInfoSet.js
  2062. POST /watch-api/device/set/up/clockalarm/set | deviceInfoSet.js
  2063. POST /watch-api/device/set/up/goal | deviceInfoSet.js
  2064. POST /watch-api/device/set/up/hralarm | deviceInfoSet.js
  2065. POST /watch-api/device/set/up/language/set | deviceInfoSet.js
  2066. POST /watch-api/device/set/up/medication | deviceInfoSet.js
  2067. POST /watch-api/device/set/up/phonebook/sync | deviceInfoSet.js
  2068. POST /watch-api/device/set/up/sedentary/set | deviceInfoSet.js
  2069. POST /watch-api/device/set/up/spo2alarm | deviceInfoSet.js
  2070. POST /watch-api/device/set/up/study | deviceInfoSet.js
  2071. POST /watch-api/device/set/up/userinfo | deviceInfoSet.js
  2072. POST /watch-api/materials | materials.js
  2073. POST /watch-api/type | materialsType.js
  2074. POST /watch-api/watch/alarm/setStatusById | deviceInfo.js
  2075. POST /withdrawalManage | withdrawalManage.js
  2076. POST /workflow/ai-generator/confirm/ | workflowLobster.js
  2077. POST /workflow/tag-binding | tagBinding.js
  2078. POST /workflow/tag-binding/batch-bind-lobster-tag | tagBinding.js
  2079. POST /workflow/tag-binding/match-template | tagBinding.js
  2080. POST /wx/wxSop | wxSop.js
  2081. POST /wx/wxSopLogs | wxSopLogs.js
  2082. POST /wx/wxSopLogs/exportCVO | wxSopLogs.js
  2083. POST /wx/wxSopUser | wxSopUser.js
  2084. POST /wx/wxSopUserInfo | wxSopUserInfo.js
  2085. POST /wxSop/sopUserLogsWx/updateLogDate | sopUserLogsWx.js
  2086. PUT /ad | ad.js
  2087. PUT /ad/adDomain | adDomain.js
  2088. PUT /ad/AdDyAccount | AdDyAccount.js
  2089. PUT /ad/adDyApi | adDyApi.js
  2090. PUT /ad/AdIqiyiAccount | AdIqiyiAccount.js
  2091. PUT /ad/adSite | adSite.js
  2092. PUT /ad/AdUploadLog | AdUploadLog.js
  2093. PUT /ad/AdYouKuAccount | AdYouKuaccount.js
  2094. PUT /ad/clickLog | clickLog.js
  2095. PUT /ad/html/template | htmlTemplate.js
  2096. PUT /admin/medical/indicator/update | indicator.js
  2097. PUT /admin/medical/report/update | report.js
  2098. PUT /admin/medical/result/update | reportIndicator.js
  2099. PUT /admin/medical/unit/update | unit.js
  2100. PUT /aiChatQuality | aiChatQuality.js
  2101. PUT /aiob/AiobBaiduCallApi | AiobBaiduCallApi.js
  2102. PUT /aiob/AiobBaiduEncryption | AiobBaiduEncryption.js
  2103. PUT /aiob/AiobBaiduTask | AiobBaiduTask.js
  2104. PUT /aiProvider | aiProvider.js
  2105. PUT /article | article.js
  2106. PUT /bd/BdAccount | BdAccount.js
  2107. PUT /callRecord | callRecord.js
  2108. PUT /commissionRecord | commissionRecord.js
  2109. PUT /company | company.js
  2110. PUT /company/addwx | addwx.js
  2111. PUT /company/callphone | callphone.js
  2112. PUT /company/company | company.js
  2113. PUT /company/companyOperLog | companyOperLog.js
  2114. PUT /company/companyRedPacketBalanceLogs | companyRedPacketBalanceLogs.js
  2115. PUT /company/companySmsPackage | companySmsPackage.js
  2116. PUT /company/companyTag | companyTag.js
  2117. PUT /company/companyTagGroup | companyTagGroup.js
  2118. PUT /company/companyUser | companyUser.js
  2119. PUT /company/CompanyUserAll | companyUserAll.js
  2120. PUT /company/CompanyUserAll/allowedAllRegister | companyUserAll.js
  2121. PUT /company/CompanyUserAll/changeStatus | companyUserAll.js
  2122. PUT /company/CompanyUserAll/resetPwd | companyUserAll.js
  2123. PUT /company/CompanyUserAll/setRegister | companyUserAll.js
  2124. PUT /company/companyVoice | companyVoice.js
  2125. PUT /company/companyVoiceApi | companyVoiceApi.js
  2126. PUT /company/companyVoiceBlacklist | companyVoiceBlacklist.js
  2127. PUT /company/companyVoiceCaller | companyVoiceCaller.js
  2128. PUT /company/companyVoiceConfig | companyVoiceConfig.js
  2129. PUT /company/companyVoiceLogs | companyVoiceLogs.js
  2130. PUT /company/companyVoicePackage | companyVoicePackage.js
  2131. PUT /company/companyVoicePackageOrder | companyVoicePackageOrder.js
  2132. PUT /company/schedule | schedule.js
  2133. PUT /company/sendmsg | sendmsg.js
  2134. PUT /complaint/category | category.js
  2135. PUT /complaint/category/status | category.js
  2136. PUT /consumeRecord | consumeRecord.js
  2137. PUT /course | course.js
  2138. PUT /course/courseAnswerLog | courseAnswerLog.js
  2139. PUT /course/courseDomainName | courseDomainName.js
  2140. PUT /course/courseQuestionBank | courseQuestionBank.js
  2141. PUT /course/courseQuestionCategory | courseQuestionCategory.js
  2142. PUT /course/courseWatchComment | courseWatchComment.js
  2143. PUT /course/courseWatchComment/addBlack | courseWatchComment.js
  2144. PUT /course/courseWatchComment/clearBlack | courseWatchComment.js
  2145. PUT /course/courseWatchComment/updateBarrageStatus | courseWatchComment.js
  2146. PUT /course/fsCourseProduct | fsCourseProduct.js
  2147. PUT /course/fsCourseProductOrder | fsCourseProductOrder.js
  2148. PUT /course/fsUserCoursePeriodDays | fsUserCoursePeriodDays.js
  2149. PUT /course/statistics | statistics.js
  2150. PUT /course/trainingCamp | trainingCamp.js
  2151. PUT /course/userCourseComment | userCourseComment.js
  2152. PUT /course/userCourseCommentLike | userCourseCommentLike.js
  2153. PUT /course/userCourseComplaintRecord | userCourseComplaintRecord.js
  2154. PUT /course/userCourseComplaintType | userCourseComplaintType.js
  2155. PUT /course/userCourseFavorite | userCourseFavorite.js
  2156. PUT /course/userCourseNote | userCourseNote.js
  2157. PUT /course/userCourseNoteLike | userCourseNoteLike.js
  2158. PUT /course/userCourseOrder | userCourseOrder.js
  2159. PUT /course/userCourseStudy | userCourseStudy.js
  2160. PUT /course/userCourseStudyLog | userCourseStudyLog.js
  2161. PUT /course/userTalent | userTalent.js
  2162. PUT /course/userTalent/audit | userTalent.js
  2163. PUT /course/userTalentFollow | userTalentFollow.js
  2164. PUT /course/userVideo | userVideo.js
  2165. PUT /course/userVideoComment | userVideoComment.js
  2166. PUT /course/userVideoCommentLike | userVideoCommentLike.js
  2167. PUT /course/userVideoFavorite | userVideoFavorite.js
  2168. PUT /course/userVideoLike | userVideoLike.js
  2169. PUT /course/userVideoView | userVideoView.js
  2170. PUT /course/userVipOrder | userVipOrder.js
  2171. PUT /course/userVipPackage | userVipPackage.js
  2172. PUT /course/videoResource | videoResource.js
  2173. PUT /course/videoTags | userVideoTags.js
  2174. PUT /courseFinishTemp/course | course.js
  2175. PUT /crm | crm.js
  2176. PUT /crm/analyze | customerAnalyze.js
  2177. PUT /crm/assist | assist.js
  2178. PUT /crm/customerHisOrder | customerHisOrder.js
  2179. PUT /crm/event | event.js
  2180. PUT /crm/msg | msg.js
  2181. PUT /crm/third | third.js
  2182. PUT /doctorChat/session | aiDoctorChat.js
  2183. PUT /fast_gpt/read_package | readPackage.js
  2184. PUT /fastGpt/fastGptChatReplaceText | fastGptChatReplaceText.js
  2185. PUT /fastGpt/fastGptChatReplaceWords | fastGptChatReplaceWords.js
  2186. PUT /fastGpt/FastGptExtUserTag | FastGptExtUserTag.js
  2187. PUT /fastGpt/role | fastGptRole.js
  2188. PUT /FastGptExtUserTag | FastGptExtUserTag.js
  2189. PUT /his/adv | adv.js
  2190. PUT /his/aiWorkflow/status/ | aiWorkflow.js
  2191. PUT /his/answer | answer.js
  2192. PUT /his/appVersion | appVersion.js
  2193. PUT /his/article | article.js
  2194. PUT /his/articleCate | articleCate.js
  2195. PUT /his/articleViews | articleViews.js
  2196. PUT /his/caseArticle | caseArticle.js
  2197. PUT /his/chineseMedicine | chineseMedicine.js
  2198. PUT /his/city | city.js
  2199. PUT /his/company | company.js
  2200. PUT /his/companyDeduct | companyDeduct.js
  2201. PUT /his/companyRecharge | companyRecharge.js
  2202. PUT /his/complaint | complaint.js
  2203. PUT /his/coupon | coupon.js
  2204. PUT /his/department | department.js
  2205. PUT /his/dfAccount | dfAccount.js
  2206. PUT /his/disease | disease.js
  2207. PUT /his/divItem | divItem.js
  2208. PUT /his/doctor | doctor.js
  2209. PUT /his/doctorArticle | doctorArticle.js
  2210. PUT /his/doctorArticleCate | doctorArticleCate.js
  2211. PUT /his/doctorBill | doctorBill.js
  2212. PUT /his/doctorExtract | doctorExtract.js
  2213. PUT /his/doctorOperLog | doctorOperLog.js
  2214. PUT /his/doctorPrescribe | doctorPrescribe.js
  2215. PUT /his/doctorPrescribeDrug | doctorPrescribeDrug.js
  2216. PUT /his/doctorProduct | doctorProduct.js
  2217. PUT /his/drugReport | drugReport.js
  2218. PUT /his/drugReportCount | drugReportCount.js
  2219. PUT /his/exportTask | exportTask.js
  2220. PUT /his/express | express.js
  2221. PUT /his/famousPrescribe | famousPrescribe.js
  2222. PUT /his/followTemp | followTemp.js
  2223. PUT /his/fsFirstDiagnosis | fsFirstDiagnosis.js
  2224. PUT /his/healthArticle | healthArticle.js
  2225. PUT /his/healthData | healthData.js
  2226. PUT /his/healthHistoryTemp | healthHistoryTemp.js
  2227. PUT /his/healthLife | healthLife.js
  2228. PUT /his/healthRecord | healthRecord.js
  2229. PUT /his/healthTongue | healthTongue.js
  2230. PUT /his/hfpayConfig | hfpayConfig.js
  2231. PUT /his/homeArticle | homeArticle.js
  2232. PUT /his/homeCategory | homeCategory.js
  2233. PUT /his/homeView | homeView.js
  2234. PUT /his/hospital | hospital.js
  2235. PUT /his/icd | icd.js
  2236. PUT /his/illnessLibrary | illnessLibrary.js
  2237. PUT /his/inquiryDisease | inquiryDisease.js
  2238. PUT /his/inquiryOrder | inquiryOrder.js
  2239. PUT /his/inquiryOrder/editStatus | inquiryOrder.js
  2240. PUT /his/inquiryOrderPing | inquiryOrderPing.js
  2241. PUT /his/inquiryOrderReport | inquiryOrderReport.js
  2242. PUT /his/inquiryOrderReport/audit | inquiryOrderReport.js
  2243. PUT /his/inquiryOrderReport/updateAuditReport | inquiryOrderReport.js
  2244. PUT /his/inquiryPatientInfo | inquiryPatient.js
  2245. PUT /his/inquiryTemp | inquiryTemp.js
  2246. PUT /his/logs | logs.js
  2247. PUT /his/medicatedFood | medicatedFood.js
  2248. PUT /his/merchantAppConfig | merchantAppConfig.js
  2249. PUT /his/package | package.js
  2250. PUT /his/packageCate | packageCate.js
  2251. PUT /his/packageFavorite | packageFavorite.js
  2252. PUT /his/packageOrder | packageOrder.js
  2253. PUT /his/packageOrder/refundAudit | packageOrder.js
  2254. PUT /his/packageSolarTerm | packageSolarTerm.js
  2255. PUT /his/patient | patient.js
  2256. PUT /his/pharmacist | pharmacist.js
  2257. PUT /his/physicalReportTemplate | physicalReportTemplate.js
  2258. PUT /his/physicalReportTemplateField | physicalReportTemplateField.js
  2259. PUT /his/prescribe | prescribe.js
  2260. PUT /his/price | price.js
  2261. PUT /his/promotionActive | promotionActive.js
  2262. PUT /his/promotionActiveLog | promotionActiveLog.js
  2263. PUT /his/questions | questions.js
  2264. PUT /his/store | store.js
  2265. PUT /his/store/audit | store.js
  2266. PUT /his/storeActivity | storeActivity.js
  2267. PUT /his/storeAfterSales | storeAfterSales.js
  2268. PUT /his/storeAfterSales/auditing | storeAfterSales.js
  2269. PUT /his/storeAfterSales/depotAuditing | storeAfterSales.js
  2270. PUT /his/storeAfterSales/noAuditing | storeAfterSales.js
  2271. PUT /his/storeAfterSales/tuiMoney | storeAfterSales.js
  2272. PUT /his/storeBill | storeBill.js
  2273. PUT /his/storeExtract | storeExtract.js
  2274. PUT /his/storeLog | storeLog.js
  2275. PUT /his/storeOrder | storeOrder.js
  2276. PUT /his/storeOrder/afterSales | storeOrder.js
  2277. PUT /his/storeOrder/getGoods | storeOrder.js
  2278. PUT /his/storeOrder/sendGoods | storeOrder.js
  2279. PUT /his/storeOrder/tuiOrder | storeOrder.js
  2280. PUT /his/storeOrder/updateDelivery | storeOrder.js
  2281. PUT /his/storeOrder/updateMoney | storeOrder.js
  2282. PUT /his/storePayment | storePayment.js
  2283. PUT /his/storeProduct | storeProduct.js
  2284. PUT /his/storeProductCategory | storeProductCategory.js
  2285. PUT /his/storeProductPackage | storeProductPackage.js
  2286. PUT /his/storeSubOrder | storeSubOrder.js
  2287. PUT /his/template | complaint.js
  2288. PUT /his/testReport | testReport.js
  2289. PUT /his/testTemp | testTemp.js
  2290. PUT /his/testTempItem | testTempItem.js
  2291. PUT /his/user | user.js
  2292. PUT /his/userAddress | userAddress.js
  2293. PUT /his/userBill | userBill.js
  2294. PUT /his/userCoupon | userCoupon.js
  2295. PUT /his/userExtract | userExtract.js
  2296. PUT /his/userIntegralLogs | userIntegralLogs.js
  2297. PUT /his/userNewTask | userNewTask.js
  2298. PUT /his/userRecharge | userRecharge.js
  2299. PUT /his/vessel | vessel.js
  2300. PUT /his_store/store_instan_discount_issue | storeInstanDiscountIssue.js
  2301. PUT /his_store/store_instant_discount | storeInstantDiscount.js
  2302. PUT /his_store/store_instant_discount_user | storeInstantDiscountUser.js
  2303. PUT /hisStore/collection | collection.js
  2304. PUT /hisStore/collection/stop | collectionSchedule.js
  2305. PUT /live | live.js
  2306. PUT /live/comment | comment.js
  2307. PUT /live/coupon/issue/user | liveCouponIssueUser.js
  2308. PUT /live/healthLiveOrder | healthLiveOrder.js
  2309. PUT /live/issue | issue.js
  2310. PUT /live/live_cart | liveCart.js
  2311. PUT /live/live_order_item | liveOrderItem.js
  2312. PUT /live/liveAfterSalesItem | liveAfterSalesItem.js
  2313. PUT /live/liveAfterSalesLogs | liveAfterSalesLogs.js
  2314. PUT /live/liveEventConf | liveEventConf.js
  2315. PUT /live/liveOrderStatus | liveOrderStatus.js
  2316. PUT /live/liveQuestion | liveQuestion.js
  2317. PUT /live/liveQuestionBank | liveQuestionBank.js
  2318. PUT /live/liveUserRedRecord | liveUserRedRecord.js
  2319. PUT /live/order/payment | liveOrderPayment.js
  2320. PUT /live/trafficLog | liveTrafficLog.js
  2321. PUT /liveData | liveData.js
  2322. PUT /moduleUsage | moduleUsage.js
  2323. PUT /product | product.js
  2324. PUT /proxy | proxy.js
  2325. PUT /push/push | push.js
  2326. PUT /qw/course/courseAnswerLog | courseAnswerlogs.js
  2327. PUT /qw/externalContactCrm | externalContactCrm.js
  2328. PUT /qw/externalContactTransferCompanyAudit | externalContactTransferCompanyAudit.js
  2329. PUT /qw/group_chat_user | group_chat_user.js
  2330. PUT /qw/groupMsgItem | groupMsgItem.js
  2331. PUT /qw/qwAppContactWayLogs | qwAppContactWayLogs.js
  2332. PUT /qw/qwCompany | qwCompany.js
  2333. PUT /qw/qwInformation | qwInformation.js
  2334. PUT /qw/qwIpadServer | qwIpadServer.js
  2335. PUT /qw/qwIpadServerLog | qwIpadServerLog.js
  2336. PUT /qw/qwIpadServerUser | qwIpadServerUser.js
  2337. PUT /qw/qwPushCount | qwPushCount.js
  2338. PUT /qw/record | record.js
  2339. PUT /qw/records | applyIpad.js
  2340. PUT /qw/workLink | workLink.js
  2341. PUT /qw/workLinkUser | workLinkUser.js
  2342. PUT /qw/workUser | workUser.js
  2343. PUT /qwExternalContact | qwExternalContact.js
  2344. PUT /qwSop/sopUserLogsInfo | sopUserLogsInfo.js
  2345. PUT /rechargeRecord | rechargeRecord.js
  2346. PUT /recharge-templates/ | template.js
  2347. PUT /redPacket/more | redPacketConfig.js
  2348. PUT /shop/msg | msg.js
  2349. PUT /shop/records | records.js
  2350. PUT /shop/role | role.js
  2351. PUT /sop | sop.js
  2352. PUT /sop/companySopRole | companySopRole.js
  2353. PUT /store | store.js
  2354. PUT /store/adv | adv.js
  2355. PUT /store/coupon | coupon.js
  2356. PUT /store/doctor | doctor.js
  2357. PUT /store/doctor/editDoctor | doctor.js
  2358. PUT /store/doctor/editDoctorPrice | doctor.js
  2359. PUT /store/doctor/editFollow | doctor.js
  2360. PUT /store/doctor/editPassWord | doctor.js
  2361. PUT /store/healthData | healthData.js
  2362. PUT /store/healthLife | healthLife.js
  2363. PUT /store/healthStoreOrder | healthStoreOrder.js
  2364. PUT /store/healthTongue | healthTongue.js
  2365. PUT /store/his/chineseMedicine | chineseMedicine.js
  2366. PUT /store/his/department | department.js
  2367. PUT /store/his/disease | disease.js
  2368. PUT /store/his/doctorArticle | doctorArticle.js
  2369. PUT /store/his/famousPrescribe | famousPrescribe.js
  2370. PUT /store/his/illnessLibrary | illnessLibrary.js
  2371. PUT /store/his/integralOrder | integralOrder.js
  2372. PUT /store/his/integralOrder/sendGoods | integralOrder.js
  2373. PUT /store/his/medicatedFood | medicatedFood.js
  2374. PUT /store/his/store | store.js
  2375. PUT /store/his/store/refresh/ | store.js
  2376. PUT /store/his/testReport | testReport.js
  2377. PUT /store/his/testTemp | testTemp.js
  2378. PUT /store/his/testTempItem | testTempItem.js
  2379. PUT /store/his/vessel | vessel.js
  2380. PUT /store/homeArticle | homeArticle.js
  2381. PUT /store/homeCategory | homeCategory.js
  2382. PUT /store/homeView | homeView.js
  2383. PUT /store/menu | menu.js
  2384. PUT /store/prescribeDrug | prescribeDrug.js
  2385. PUT /store/PromotionOrder | PromotionOrder.js
  2386. PUT /store/recommend | recommend.js
  2387. PUT /store/shippingTemplates | shippingTemplates.js
  2388. PUT /store/shippingTemplatesFree | shippingTemplatesFree.js
  2389. PUT /store/shippingTemplatesRegion | shippingTemplatesRegion.js
  2390. PUT /store/storeActivity | storeActivity.js
  2391. PUT /store/storeAfterSalesItem | storeAfterSalesItem.js
  2392. PUT /store/storeAfterSalesStatus | storeAfterSalesStatus.js
  2393. PUT /store/storeCart | storeCart.js
  2394. PUT /store/storeCoupon | storeCoupon.js
  2395. PUT /store/storeCouponIssue | storeCouponIssue.js
  2396. PUT /store/storeCouponIssueUser | storeCouponIssueUser.js
  2397. PUT /store/storeCouponUser | storeCouponUser.js
  2398. PUT /store/storeOrderAudit | storeOrderAudit.js
  2399. PUT /store/storeOrderItem | storeOrderItem.js
  2400. PUT /store/storeOrderNotice | storeOrderNotice.js
  2401. PUT /store/storeOrderOffline | storeOrderOffline.js
  2402. PUT /store/storeOrderStatus | storeOrderStatus.js
  2403. PUT /store/storeProductAttr | storeProductAttr.js
  2404. PUT /store/storeProductAttrValue | storeProductAttrValue.js
  2405. PUT /store/storeProductDetails | storeProductDetails.js
  2406. PUT /store/storeProductGroup | storeProductGroup.js
  2407. PUT /store/storeProductRelation | storeProductRelation.js
  2408. PUT /store/storeProductReply | storeProductReply.js
  2409. PUT /store/storeProductRule | storeProductRule.js
  2410. PUT /store/storeProductTemplate | storeProductTemplate.js
  2411. PUT /store/storeShop | storeShop.js
  2412. PUT /store/storeShopStaff | storeShopStaff.js
  2413. PUT /store/storeVisit | storeVisit.js
  2414. PUT /store/userPromoterApply | userPromoterApply.js
  2415. PUT /storeOrder | storeOrder.js
  2416. PUT /storeOrderOfflineItem/store | store.js
  2417. PUT /sysCompany | sysCompany.js
  2418. PUT /system/companyVoiceDialog | companyVoiceDialog.js
  2419. PUT /system/companyVoiceRobotic | companyVoiceRobotic.js
  2420. PUT /system/companyVoiceRoboticCallees | companyVoiceRoboticCallees.js
  2421. PUT /system/config | config.js
  2422. PUT /system/dept | dept.js
  2423. PUT /system/dict/data | data.js
  2424. PUT /system/dict/type | type.js
  2425. PUT /system/keyword | keyword.js
  2426. PUT /system/menu | menu.js
  2427. PUT /system/notice | notice.js
  2428. PUT /system/post | post.js
  2429. PUT /system/resourceM/updateCompanyResource | resourceManagement.js
  2430. PUT /system/resourceM/updateDeptResource | resourceManagement.js
  2431. PUT /system/role | role.js
  2432. PUT /system/role/authUser/cancel | role.js
  2433. PUT /system/role/authUser/cancelAll | role.js
  2434. PUT /system/role/authUser/selectAll | role.js
  2435. PUT /system/role/changeStatus | role.js
  2436. PUT /system/role/dataScope | role.js
  2437. PUT /system/set | set.js
  2438. PUT /system/user | user.js
  2439. PUT /system/user/authRole | user.js
  2440. PUT /system/user/changeStatus | user.js
  2441. PUT /system/user/profile | user.js
  2442. PUT /system/user/profile/updatePwd | user.js
  2443. PUT /system/user/resetPwd | user.js
  2444. PUT /sysUser | sysUser.js
  2445. PUT /sysUser/resetPwd | sysUser.js
  2446. PUT /tenant | tenant.js
  2447. PUT /tenant/record | record.js
  2448. PUT /tenant/tenant | tenant.js
  2449. PUT /tenant/tenant/updateTenantComMenu | menu.js
  2450. PUT /tenant/tenant/updateTenantMenu | menu.js
  2451. PUT /third/feiyu/importThird | third.js
  2452. PUT /tools/user | user.js
  2453. PUT /tools/userCoinLog | userCoinLog.js
  2454. PUT /tools/videoOrder | videoOrder.js
  2455. PUT /tools/vipOrder | vipOrder.js
  2456. PUT /user/complaint | complaint.js
  2457. PUT /user/msg | complaint.js
  2458. PUT /users/user | user.js
  2459. PUT /watch-api/device | deviceInfo.js
  2460. PUT /watch-api/materials | materials.js
  2461. PUT /watch-api/type | materialsType.js
  2462. PUT /withdrawalManage | withdrawalManage.js
  2463. PUT /workflow/canvas/ | workflowLobster.js
  2464. PUT /workflow/template/ | workflowLobster.js
  2465. PUT /wx/wxSop | wxSop.js
  2466. PUT /wx/wxSopLogs | wxSopLogs.js
  2467. PUT /wx/wxSopUser | wxSopUser.js
  2468. PUT /wx/wxSopUserInfo | wxSopUserInfo.js
  2469. === 500 ===
  2470. DELETE /adv/advertiser/ | advertiser.js | msg=Request method 'DELETE' not supported
  2471. DELETE /adv/callback-account/ | callbackAccount.js | msg=Request method 'DELETE' not supported
  2472. DELETE /adv/callback-account/batch | callbackAccount.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "batch"
  2473. DELETE /adv/domains/ | domain.js | msg=Request method 'DELETE' not supported
  2474. DELETE /adv/domains/batch | domain.js | msg=Required request body is missing: public com.fs.common.result.Result<java.lang.String> com.fs.company.controller.newAdv.DomainController.batchDelete(java.util.List<java.lang.Long>)
  2475. DELETE /adv/landing-page-templates/ | landingPageTemplate.js | msg=Request method 'DELETE' not supported
  2476. DELETE /adv/landing-page-templates/batch | landingPageTemplate.js | msg=Request method 'DELETE' not supported
  2477. DELETE /adv/promotion-account/ | promotionAccount.js | msg=Request method 'DELETE' not supported
  2478. DELETE /adv/promotion-account/batch | promotionAccount.js | msg=Required request body is missing: public com.fs.common.result.Result<java.lang.Void> com.fs.company.controller.newAdv.PromotionAccountController.batchDelete(java.lang.Long[])
  2479. DELETE /adv/site/ | site.js | msg=Request method 'DELETE' not supported
  2480. DELETE /bill/billLog/ | billLog.js | msg=Request method 'DELETE' not supported
  2481. DELETE /chat/chatDataset/ | chatDataset.js | msg=Request method 'DELETE' not supported
  2482. DELETE /chat/chatDatasetFile/ | chatDatasetFile.js | msg=Request method 'DELETE' not supported
  2483. DELETE /chat/chatKeyword/ | chatKeyword.js | msg=Request method 'DELETE' not supported
  2484. DELETE /chat/chatMsg/ | chatMsg.js | msg=Request method 'DELETE' not supported
  2485. DELETE /chat/chatMsgLogs/ | chatMsgLogs.js | msg=Request method 'DELETE' not supported
  2486. DELETE /chat/chatRole/ | chatRole.js | msg=Request method 'DELETE' not supported
  2487. DELETE /chat/chatSession/ | chatSession.js | msg=Request method 'DELETE' not supported
  2488. DELETE /chat/chatUser/ | chatUser.js | msg=Request method 'DELETE' not supported
  2489. DELETE /company/aiSipCall/aiSipCallUser/ | aiSipCallUser.js | msg=Request method 'DELETE' not supported
  2490. DELETE /company/aiSipCall/bizGroup/ | aiSipCallBizGroup.js | msg=Request method 'DELETE' not supported
  2491. DELETE /company/aiSipCall/gateway/ | aiSipCallGateway.js | msg=Request method 'DELETE' not supported
  2492. DELETE /company/aiSipCall/llmAgentAccount/ | aiSipCallLlmAgentAccount.js | msg=Request method 'DELETE' not supported
  2493. DELETE /company/aiSipCall/outboundCdr/ | aiSipCallOutboundCdr.js | msg=Request method 'DELETE' not supported
  2494. DELETE /company/aiSipCall/phone/ | aiSipCallPhone.js | msg=Request method 'DELETE' not supported
  2495. DELETE /company/aiSipCall/task/ | aiSipCallTask.js | msg=Request method 'DELETE' not supported
  2496. DELETE /company/aiSipCall/voiceTtsAliyun/ | aiSipCallVoiceTtsAliyun.js | msg=Request method 'DELETE' not supported
  2497. DELETE /company/companUsercard/ | companyUserCard.js | msg=Request method 'DELETE' not supported
  2498. DELETE /company/companyBindUser/ | companyBindUser.js | msg=Request method 'DELETE' not supported
  2499. DELETE /company/companyClient/ | companyClient.js | msg=Request method 'DELETE' not supported
  2500. DELETE /company/companyConfig/ | companyConfig.js | msg=Request method 'DELETE' not supported
  2501. DELETE /company/companyDept/ | companyDept.js | msg=Request method 'DELETE' not supported
  2502. DELETE /company/companyDomainBind/ | companyDomainBind.js | msg=Request method 'DELETE' not supported
  2503. DELETE /company/companyMenu/ | companyMenu.js | msg=Request method 'DELETE' not supported
  2504. DELETE /company/companyPost/ | companyPost.js | msg=Request method 'DELETE' not supported
  2505. DELETE /company/companyProfit/ | companyProfit.js | msg=Request method 'DELETE' not supported
  2506. DELETE /company/companyRecharge/ | companyRecharge.js | msg=Request method 'DELETE' not supported
  2507. DELETE /company/companyRole/ | companyRole.js | msg=Request method 'DELETE' not supported
  2508. DELETE /company/companySms/ | companySms.js | msg=Request method 'DELETE' not supported
  2509. DELETE /company/companySmsLogs/ | companySmsLogs.js | msg=Request method 'DELETE' not supported
  2510. DELETE /company/companySmsOrder/ | companySmsOrder.js | msg=Request method 'DELETE' not supported
  2511. DELETE /company/companySmsTemp/ | companySmsTemp.js | msg=Request method 'DELETE' not supported
  2512. DELETE /company/companyVoiceDialog/ | companyVoiceDialog.js | msg=Request method 'DELETE' not supported
  2513. DELETE /company/companyVoiceRobotic/ | companyVoiceRobotic.js | msg=Request method 'DELETE' not supported
  2514. DELETE /company/companyVoiceRoboticCallBlacklist/ | companyVoiceRoboticCallBlacklist.js | msg=Request method 'DELETE' not supported
  2515. DELETE /company/companyWx/ | companyAccount.js | msg=Request method 'DELETE' not supported
  2516. DELETE /company/consume/ | tcmconsume.js | msg=Request method 'DELETE' not supported
  2517. DELETE /company/tcmScheduleReport/ | tcmScheduleReport.js | msg=Request method 'DELETE' not supported
  2518. DELETE /company/VoiceRoboticWx/ | VoiceRoboticWx.js | msg=Request method 'DELETE' not supported
  2519. DELETE /company/wxDialog/ | wxDialog.js | msg=Request method 'DELETE' not supported
  2520. DELETE /company/wxUser/ | wxUser.js | msg=Request method 'DELETE' not supported
  2521. DELETE /company/wxUserGroup/ | wxUserGroup.js | msg=Request method 'DELETE' not supported
  2522. DELETE /course/courseFinishTemp/ | courseFinishTemp.js | msg=Request method 'DELETE' not supported
  2523. DELETE /course/courseFinishTempParent/ | courseFinishTempParent.js | msg=Request method 'DELETE' not supported
  2524. DELETE /course/courseLink/ | courseLink.js | msg=Request method 'DELETE' not supported
  2525. DELETE /course/courseRedPacketLog/ | courseRedPacketLog.js | msg=Request method 'DELETE' not supported
  2526. DELETE /course/courseTrafficLog/ | courseTrafficLog.js | msg=Request method 'DELETE' not supported
  2527. DELETE /course/courseWatchLog/ | courseWatchLog.js | msg=Request method 'DELETE' not supported
  2528. DELETE /course/period/ | period.js | msg=Request method 'DELETE' not supported
  2529. DELETE /course/period/day/ | userCoursePeriod.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "day"
  2530. DELETE /course/playSourceConfig/ | coursePlaySourceConfig.js | msg=Request method 'DELETE' not supported
  2531. DELETE /course/sop/ | appIdList.js | msg=Request method 'DELETE' not supported
  2532. DELETE /course/sopLogs/ | sopLogs.js | msg=Request method 'DELETE' not supported
  2533. DELETE /course/userCourse/ | userCourse.js | msg=Request method 'DELETE' not supported
  2534. DELETE /course/userCourse/public/ | userCoursePublic.js | msg=Request method 'DELETE' not supported
  2535. DELETE /course/userCourseCategory/ | userCourseCategory.js | msg=Request method 'DELETE' not supported
  2536. DELETE /course/userCourseVideo/ | userCourseVideo.js | msg=Request method 'DELETE' not supported
  2537. DELETE /course/userWatchCourseStatistics/ | userWatchCourseStatistics.js | msg=Request method 'DELETE' not supported
  2538. DELETE /course/userWatchStatistics/ | userWatchStatistics.js | msg=Request method 'DELETE' not supported
  2539. DELETE /crm/customer/removeLine/ | customer.js | msg=Request method 'DELETE' not supported
  2540. DELETE /crm/customerContacts/ | customerContacts.js | msg=Request method 'DELETE' not supported
  2541. DELETE /crm/customerExt/ | customerExt.js | msg=Request method 'DELETE' not supported
  2542. DELETE /crm/customerLogs/ | customerLogs.js | msg=Request method 'DELETE' not supported
  2543. DELETE /crm/customerProperty/ | customerProperty.js | msg=Request method 'DELETE' not supported
  2544. DELETE /crm/customerPropertyTemplate/ | propertyTemplate.js | msg=Request method 'DELETE' not supported
  2545. DELETE /crm/customerUser/ | customerUser.js | msg=Request method 'DELETE' not supported
  2546. DELETE /crm/customerVisit/ | customerVisit.js | msg=Request method 'DELETE' not supported
  2547. DELETE /fastGpt/fastgptChatArtificialWords/ | fastgptChatArtificialWords.js | msg=Request method 'DELETE' not supported
  2548. DELETE /fastGpt/fastGptChatKeyword/ | fastGptChatKeyword.js | msg=Request method 'DELETE' not supported
  2549. DELETE /fastGpt/fastGptChatMsg/ | fastGptChatMsg.js | msg=Request method 'DELETE' not supported
  2550. DELETE /fastGpt/fastGptChatMsgLogs/ | fastGptChatMsgLogs.js | msg=Request method 'DELETE' not supported
  2551. DELETE /fastGpt/fastGptChatSession/ | fastGptChatSession.js | msg=Request method 'DELETE' not supported
  2552. DELETE /fastGpt/fastGptCollection/ | fastGptCollection.js | msg=Request method 'DELETE' not supported
  2553. DELETE /fastGpt/fastGptCollentionData/ | fastGptCollentionData.js | msg=Request method 'DELETE' not supported
  2554. DELETE /fastGpt/fastGptDataset/ | fastGptDataset.js | msg=Request method 'DELETE' not supported
  2555. DELETE /fastGpt/fastgptEventLogTotal/ | fastgptEventLogTotal.js | msg=Request method 'DELETE' not supported
  2556. DELETE /fastGpt/fastGptKeywordSend/ | fastGptKeywordSend.js | msg=Request method 'DELETE' not supported
  2557. DELETE /fastGpt/fastGptRole/ | role.js | msg=Request method 'DELETE' not supported
  2558. DELETE /fastGpt/fastGptRoleTag/ | fastGptRoleTag.js | msg=Request method 'DELETE' not supported
  2559. DELETE /fastGpt/fastGptUser/ | fastGptUser.js | msg=Request method 'DELETE' not supported
  2560. DELETE /his/follow/ | follow.js | msg=Request method 'DELETE' not supported
  2561. DELETE /his/FsFollowReport/ | FsFollowReport.js | msg=Request method 'DELETE' not supported
  2562. DELETE /his/integralGoods/ | integralGoods.js | msg=Request method 'DELETE' not supported
  2563. DELETE /his/integralOrder/ | integralOrder.js | msg=Request method 'DELETE' not supported
  2564. DELETE /live/config/ | liveQuestionLive.js | msg=Request method 'DELETE' not supported
  2565. DELETE /live/coupon/ | liveCoupon.js | msg=Request method 'DELETE' not supported
  2566. DELETE /live/coupon/issue/ | liveCouponIssue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "issue"
  2567. DELETE /live/coupon/user/ | liveCouponUser.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "user"
  2568. DELETE /live/gift/ | gift.js | msg=Request method 'DELETE' not supported
  2569. DELETE /live/live/ | live.js | msg=Request method 'DELETE' not supported
  2570. DELETE /live/liveAfterSales/ | liveAfterSales.js | msg=Request method 'DELETE' not supported
  2571. DELETE /live/liveAnchor/ | liveAnchor.js | msg=Request method 'DELETE' not supported
  2572. DELETE /live/liveGoods/ | liveGoods.js | msg=Request method 'DELETE' not supported
  2573. DELETE /live/liveLotteryConf/ | liveLotteryConf.js | msg=Request method 'DELETE' not supported
  2574. DELETE /live/liveLotteryRecord/ | liveLotteryRecord.js | msg=Request method 'DELETE' not supported
  2575. DELETE /live/liveLotteryRegistration/ | liveLotteryRegistration.js | msg=Request method 'DELETE' not supported
  2576. DELETE /live/liveMsg/ | liveMsg.js | msg=Request method 'DELETE' not supported
  2577. DELETE /live/liveOrderItem/ | liveOrderitems.js | msg=Request method 'DELETE' not supported
  2578. DELETE /live/liveOrderLogs/ | liveOrderLogs.js | msg=Request method 'DELETE' not supported
  2579. DELETE /live/liveRedConf/ | liveRedConf.js | msg=Request method 'DELETE' not supported
  2580. DELETE /live/liveUserFavorite/ | liveUserFavorite.js | msg=Request method 'DELETE' not supported
  2581. DELETE /live/liveUserFollow/ | liveUserFollow.js | msg=Request method 'DELETE' not supported
  2582. DELETE /live/liveUserLike/ | liveUserLike.js | msg=Request method 'DELETE' not supported
  2583. DELETE /live/liveUserLotteryRecord/ | liveUserLotteryRecord.js | msg=Request method 'DELETE' not supported
  2584. DELETE /live/liveVideo/ | liveVideo.js | msg=Request method 'DELETE' not supported
  2585. DELETE /live/liveWatchLog/ | liveWatchLog.js | msg=Request method 'DELETE' not supported
  2586. DELETE /live/record/ | record.js | msg=Request method 'DELETE' not supported
  2587. DELETE /live/task/ | task.js | msg=Request method 'DELETE' not supported
  2588. DELETE /live/words/ | words.js | msg=Request method 'DELETE' not supported
  2589. DELETE /monitor/job/ | job.js | msg=Request method 'DELETE' not supported
  2590. DELETE /qw/appContactWay/ | appContactWay.js | msg=Request method 'DELETE' not supported
  2591. DELETE /qw/autoTags/ | autoTags.js | msg=Request method 'DELETE' not supported
  2592. DELETE /qw/autoTagsLogs/ | autoTagsLogs.js | msg=Request method 'DELETE' not supported
  2593. DELETE /qw/autoTagsRules/ | autoTagsRules.js | msg=Request method 'DELETE' not supported
  2594. DELETE /qw/contactBatch/ | contactBatch.js | msg=Request method 'DELETE' not supported
  2595. DELETE /qw/contactWay/ | contactWay.js | msg=Request method 'DELETE' not supported
  2596. DELETE /qw/contactWayGroup/ | contactWayGroup.js | msg=Request method 'DELETE' not supported
  2597. DELETE /qw/contactWayLogs/ | contactWayLogs.js | msg=Request method 'DELETE' not supported
  2598. DELETE /qw/course/courseWatchLog/ | courseWatchLog.js | msg=Request method 'DELETE' not supported
  2599. DELETE /qw/drainageLink/ | drainageLink.js | msg=Request method 'DELETE' not supported
  2600. DELETE /qw/drainageLinkLogs/ | drainageLinkLogs.js | msg=Request method 'DELETE' not supported
  2601. DELETE /qw/externalContact/ | externalContact.js | msg=Request method 'DELETE' not supported
  2602. DELETE /qw/externalContactInfo/ | externalContactInfo.js | msg=Request method 'DELETE' not supported
  2603. DELETE /qw/externalContactTransferLog/ | externalContactTransferLog.js | msg=Request method 'DELETE' not supported
  2604. DELETE /qw/friendCircle/ | friendCircle.js | msg=Request method 'DELETE' not supported
  2605. DELETE /qw/friendCircleTask/ | friendCircleTask.js | msg=Request method 'DELETE' not supported
  2606. DELETE /qw/friendComments/ | friendComments.js | msg=Request method 'DELETE' not supported
  2607. DELETE /qw/friendCustomerList/ | friendCustomerList.js | msg=Request method 'DELETE' not supported
  2608. DELETE /qw/friendWelcomeItem/ | friendWelcomeItem.js | msg=Request method 'DELETE' not supported
  2609. DELETE /qw/groupMsg/ | groupMsg.js | msg=Request method 'DELETE' not supported
  2610. DELETE /qw/groupMsgUser/ | groupMsgUser.js | msg=Request method 'DELETE' not supported
  2611. DELETE /qw/luckyBag/ | luckyBag.js | msg=Request method 'DELETE' not supported
  2612. DELETE /qw/luckyBagCollectRecord/ | luckyBagCollectRecord.js | msg=Request method 'DELETE' not supported
  2613. DELETE /qw/material/ | material.js | msg=Request method 'DELETE' not supported
  2614. DELETE /qw/materialGroup/ | materialGroup.js | msg=Request method 'DELETE' not supported
  2615. DELETE /qw/qw/QwWorkTask/ | QwWorkTask.js | msg=Request method 'DELETE' not supported
  2616. DELETE /qw/qwPushCount/tokenList/ | fastGptPushTokenTotal.js | msg=Request method 'DELETE' not supported
  2617. DELETE /qw/qwUserVoiceLog/ | qwUserVoiceLog.js | msg=Request method 'DELETE' not supported
  2618. DELETE /qw/QwWorkTask/ | QwWorkTask.js | msg=Request method 'DELETE' not supported
  2619. DELETE /qw/QwWorkTaskNew/ | QwWorkTaskNew.js | msg=Request method 'DELETE' not supported
  2620. DELETE /qw/sop/ | sop.js | msg=Request method 'DELETE' not supported
  2621. DELETE /qw/sopTemp/ | sopTemp.js | msg=Request method 'DELETE' not supported
  2622. DELETE /qw/statistic/ | groupChatStatistic.js | msg=Request method 'DELETE' not supported
  2623. DELETE /qw/tag/ | tag.js | msg=Request method 'DELETE' not supported
  2624. DELETE /qw/tagGroup/ | tagGroup.js | msg=Request method 'DELETE' not supported
  2625. DELETE /qw/user/ | user.js | msg=Request method 'DELETE' not supported
  2626. DELETE /qw/userBehaviorData/ | userBehaviorData.js | msg=Request method 'DELETE' not supported
  2627. DELETE /qw/userVideo/ | userVideo.js | msg=Request method 'DELETE' not supported
  2628. DELETE /shop/tag/ | api.js | msg=Request method 'DELETE' not supported
  2629. DELETE /store/city/ | city.js | msg=Request method 'DELETE' not supported
  2630. DELETE /store/collectionSchedule/ | collectionSchedule.js | msg=Request method 'DELETE' not supported
  2631. DELETE /store/healthRecord/ | healthRecord.js | msg=Request method 'DELETE' not supported
  2632. DELETE /store/inquiryOrder/ | inquiryOrder.js | msg=Request method 'DELETE' not supported
  2633. DELETE /store/inquiryOrderReport/ | inquiryOrderReport.js | msg=Request method 'DELETE' not supported
  2634. DELETE /store/material/ | material.js | msg=Request method 'DELETE' not supported
  2635. DELETE /store/materialGroup/ | materialGroup.js | msg=Request method 'DELETE' not supported
  2636. DELETE /store/package/ | package.js | msg=Request method 'DELETE' not supported
  2637. DELETE /store/packageOrder/ | packageOrder.js | msg=Request method 'DELETE' not supported
  2638. DELETE /store/patient/ | patient.js | msg=Request method 'DELETE' not supported
  2639. DELETE /store/prescribe/ | prescribe.js | msg=Request method 'DELETE' not supported
  2640. DELETE /store/store/menu/ | menu.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "menu"
  2641. DELETE /store/store/prescribe/ | prescribe.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "prescribe"
  2642. DELETE /store/store/prescribeDrug/ | prescribeDrug.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "prescribeDrug"
  2643. DELETE /store/store/shippingTemplates/ | shippingTemplates.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "shippingTemplates"
  2644. DELETE /store/store/storeAfterSales/ | storeAfterSales.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSales"
  2645. DELETE /store/store/storeAfterSalesItem/ | storeAfterSalesItem.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSalesItem"
  2646. DELETE /store/store/storeAfterSalesStatus/ | storeAfterSalesStatus.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSalesStatus"
  2647. DELETE /store/store/storeCart/ | storeCart.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeCart"
  2648. DELETE /store/store/storeOrder/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeOrder"
  2649. DELETE /store/store/storeOrderItem/ | storeOrderItem.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderItem"
  2650. DELETE /store/store/storeOrderNotice/ | storeOrderNotice.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderNotice"
  2651. DELETE /store/store/storeOrderOffline/ | storeOrderOffline.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderOffline"
  2652. DELETE /store/store/storeOrderStatus/ | storeOrderStatus.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderStatus"
  2653. DELETE /store/store/storePayment/ | storePayment.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storePayment"
  2654. DELETE /store/store/storeProduct/ | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProduct"
  2655. DELETE /store/store/storeProductAttr/ | storeProductAttr.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductAttr"
  2656. DELETE /store/store/storeProductAttrValue/ | storeProductAttrValue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductAttrValue"
  2657. DELETE /store/store/storeProductCategory/ | storeProductCategory.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductCategory"
  2658. DELETE /store/store/storeProductDetails/ | storeProductDetails.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductDetails"
  2659. DELETE /store/store/storeProductGroup/ | storeProductGroup.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductGroup"
  2660. DELETE /store/store/storeProductPackage/ | storeProductPackage.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductPackage"
  2661. DELETE /store/store/storeProductRelation/ | storeProductRelation.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductRelation"
  2662. DELETE /store/store/storeProductReply/ | storeProductReply.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductReply"
  2663. DELETE /store/store/storeProductRule/ | storeProductRule.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductRule"
  2664. DELETE /store/store/storeProductTemplate/ | storeProductTemplate.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductTemplate"
  2665. DELETE /store/store/storeProductYuyue/ | storeProductYuyue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeProductYuyue"
  2666. DELETE /store/store/storeShop/ | storeShop.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeShop"
  2667. DELETE /store/store/storeShopStaff/ | storeShopStaff.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeShopStaff"
  2668. DELETE /store/store/storeVisit/ | storeVisit.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "storeVisit"
  2669. DELETE /store/store/user/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "user"
  2670. DELETE /store/store/userAddress/ | userAddress.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "userAddress"
  2671. DELETE /store/storeAfterSales/ | storeAfterSales.js | msg=Request method 'DELETE' not supported
  2672. DELETE /store/storeOrder/ | storeOrder.js | msg=Request method 'DELETE' not supported
  2673. DELETE /store/storePayment/ | storePayment.js | msg=Request method 'DELETE' not supported
  2674. DELETE /store/storeProductPackage/ | storeProductPackage.js | msg=Request method 'DELETE' not supported
  2675. DELETE /store/user/ | user.js | msg=Request method 'DELETE' not supported
  2676. DELETE /store/userAddress/ | userAddress.js | msg=Request method 'DELETE' not supported
  2677. DELETE /store/userCoupon/ | userCoupon.js | msg=Request method 'DELETE' not supported
  2678. DELETE /store/userOnlineState/ | userOnlineState.js | msg=Request method 'DELETE' not supported
  2679. DELETE /system/approval/ | approval.js | msg=Request method 'DELETE' not supported
  2680. DELETE /system/dict/type/refreshCache | type.js | msg=Request method 'DELETE' not supported
  2681. DELETE /tool/gen/ | gen.js | msg=Request method 'DELETE' not supported
  2682. DELETE /user/fsUser/ | fsUser.js | msg=Request method 'DELETE' not supported
  2683. GET /adv/advertiser/ | advertiser.js | msg=Request method 'GET' not supported
  2684. GET /adv/callback-account/ | callbackAccount.js | msg=Request method 'GET' not supported
  2685. GET /adv/domains/ | domain.js | msg=Request method 'GET' not supported
  2686. GET /adv/landing-page-templates/ | landingPageTemplate.js | msg=Request method 'GET' not supported
  2687. GET /adv/promotion-account/ | promotionAccount.js | msg=Request method 'GET' not supported
  2688. GET /adv/site/ | site.js | msg=Request method 'GET' not supported
  2689. GET /adv/site-statistics/page | siteStatistics.js | msg=Required request parameter 'startDate' for method parameter type String is not present
  2690. GET /adv/tracking-link/advertiser/ | trackingLink.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "advertiser"
  2691. GET /aicall/account/getCidConfig | aiModel.js | msg=
  2692. GET /aicall/kbcat/all | aiCall.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'description' in 'class com.fs.aicall.domain.CcLlmKbCat'
  2693. GET /aicall/provider/all | aiProvider.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'providerClassName' in 'class com.fs.aicall.domain.CcLlmAgentProvider'
  2694. GET /bill/billLog/ | billLog.js | msg=Request method 'GET' not supported
  2695. GET /chat/chatDataset/ | chatDataset.js | msg=Request method 'GET' not supported
  2696. GET /chat/chatDatasetFile/ | chatDatasetFile.js | msg=Request method 'GET' not supported
  2697. GET /chat/chatKeyword/ | chatKeyword.js | msg=Request method 'GET' not supported
  2698. GET /chat/chatKeyword/export | chatKeyword.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2699. GET /chat/chatMsg/ | chatMsg.js | msg=Request method 'GET' not supported
  2700. GET /chat/chatMsgLogs/ | chatMsgLogs.js | msg=Request method 'GET' not supported
  2701. GET /chat/chatRole/ | chatRole.js | msg=Request method 'GET' not supported
  2702. GET /chat/chatSession/ | chatSession.js | msg=Request method 'GET' not supported
  2703. GET /chat/chatUser/ | chatUser.js | msg=Request method 'GET' not supported
  2704. GET /common/getTmpSecretKey | common.js | msg=no valid secret !
  2705. GET /common/index/getIndexData | index.js | msg=此部门无用户
  2706. GET /company/aiSipCall/aiSipCallUser/ | aiSipCallUser.js | msg=Request method 'GET' not supported
  2707. GET /company/aiSipCall/aiSipCallUser/myCallUser | aiSipCallUser.js | msg=未创建sip角色
  2708. GET /company/aiSipCall/bizGroup/ | aiSipCallBizGroup.js | msg=Request method 'GET' not supported
  2709. GET /company/aiSipCall/gateway/ | aiSipCallGateway.js | msg=Request method 'GET' not supported
  2710. GET /company/aiSipCall/gateway/list | aiSipCallGateway.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "list"
  2711. GET /company/aiSipCall/llmAgentAccount/ | aiSipCallLlmAgentAccount.js | msg=Request method 'GET' not supported
  2712. GET /company/aiSipCall/outboundCdr/ | aiSipCallOutboundCdr.js | msg=Request method 'GET' not supported
  2713. GET /company/aiSipCall/outboundCdr/getCustCommunicationInfo?phoneNum= | aiSipCallOutboundCdr.js | msg=Required request parameter 'callType' for method parameter type Integer is not present
  2714. GET /company/aiSipCall/phone/ | aiSipCallPhone.js | msg=Request method 'GET' not supported
  2715. GET /company/aiSipCall/task/ | aiSipCallTask.js | msg=Request method 'GET' not supported
  2716. GET /company/aiSipCall/voiceTtsAliyun/ | aiSipCallVoiceTtsAliyun.js | msg=Request method 'GET' not supported
  2717. GET /company/balance/my | wallet.js | msg=未找到余额信息
  2718. GET /company/companUsercard/ | companyUserCard.js | msg=Request method 'GET' not supported
  2719. GET /company/companyBindUser/ | companyBindUser.js | msg=Request method 'GET' not supported
  2720. GET /company/companyClient/ | companyClient.js | msg=Request method 'GET' not supported
  2721. GET /company/companyConfig/ | companyConfig.js | msg=Request method 'GET' not supported
  2722. GET /company/companyDept/ | companyDept.js | msg=Request method 'GET' not supported
  2723. GET /company/companyDomainBind/ | companyDomainBind.js | msg=Request method 'GET' not supported
  2724. GET /company/companyMenu/ | companyMenu.js | msg=Request method 'GET' not supported
  2725. GET /company/companyMenu/export | companyMenu.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2726. GET /company/companyMoneyLogs/export | companyMoneyLogs.js | msg=你已经有正在导出的任务
  2727. GET /company/companyPost/ | companyPost.js | msg=Request method 'GET' not supported
  2728. GET /company/companyProfit/ | companyProfit.js | msg=Request method 'GET' not supported
  2729. GET /company/companyRecharge/ | companyRecharge.js | msg=Request method 'GET' not supported
  2730. GET /company/companyRole/ | companyRole.js | msg=Request method 'GET' not supported
  2731. GET /company/companySms/ | companySms.js | msg=Request method 'GET' not supported
  2732. GET /company/companySmsLogs/ | companySmsLogs.js | msg=Request method 'GET' not supported
  2733. GET /company/companySmsOrder/ | companySmsOrder.js | msg=Request method 'GET' not supported
  2734. GET /company/companySmsTemp/ | companySmsTemp.js | msg=Request method 'GET' not supported
  2735. GET /company/companyVoiceCaller/export | companyVoiceCaller.js | msg=
  2736. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2737. ### The error may exist in com/fs/company/mapper/CompanyVoiceCallerMapper.java (best guess)
  2738. ### The error may involve com.fs.company.mapper.CompanyVoiceCallerMapper.selectCompanyVoiceCallerListVO-Inline
  2739. ### The error occurred while setting parameters
  2740. ### SQL: select vc.*,u.nick_name as company_user_nick_name,c.company_name,a.api_name from company_voice_caller vc left join company c on c.company_id=vc.company_id left join company_user u on u.user_id=vc.company_user_id left join company_voice_api a on a.api_id=vc.api_id where 1=1 and vc.company_id = ? order by vc.caller_id desc
  2741. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2742. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2743. GET /company/companyVoiceCaller/importTemplate | companyVoiceCaller.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importTemplate"
  2744. GET /company/companyVoiceCaller/list | companyVoiceCaller.js | msg=
  2745. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2746. ### The error may exist in com/fs/company/mapper/CompanyVoiceCallerMapper.java (best guess)
  2747. ### The error may involve com.fs.company.mapper.CompanyVoiceCallerMapper.selectCompanyVoiceCallerListVO-Inline
  2748. ### The error occurred while setting parameters
  2749. ### SQL: select vc.*,u.nick_name as company_user_nick_name,c.company_name,a.api_name from company_voice_caller vc left join company c on c.company_id=vc.company_id left join company_user u on u.user_id=vc.company_user_id left join company_voice_api a on a.api_id=vc.api_id where 1=1 and vc.company_id = ? order by vc.caller_id desc
  2750. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2751. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'vc.api_id' in 'on clause'
  2752. GET /company/companyVoiceDialog/ | companyVoiceDialog.js | msg=Request method 'GET' not supported
  2753. GET /company/companyVoiceRobotic/ | companyVoiceRobotic.js | msg=Request method 'GET' not supported
  2754. GET /company/companyVoiceRoboticCallBlacklist/ | companyVoiceRoboticCallBlacklist.js | msg=Request method 'GET' not supported
  2755. GET /company/companyWorkflow/checkCompanyUserBeUsed/ | companyWorkflow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "checkCompanyUserBeUsed"
  2756. GET /company/companyWorkflow/getBindCompanyUserByWorkflowId/ | companyWorkflow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getBindCompanyUserByWorkflowId"
  2757. GET /company/companyWorkflow/myList | companyWorkflow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "myList"
  2758. GET /company/companyWorkflow/versionDetail/ | companyWorkflow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "versionDetail"
  2759. GET /company/companyWorkflow/versionList/ | companyWorkflow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "versionList"
  2760. GET /company/companyWx/ | companyAccount.js | msg=Request method 'GET' not supported
  2761. GET /company/consume/ | tcmconsume.js | msg=Request method 'GET' not supported
  2762. GET /company/easyCall/gateway/list | easyCall.js | msg=EasyCallCenter365 接口错误: 未授权,请联系系统管理员添加ip白名单!
  2763. GET /company/easyCall/voiceCode/list | easyCall.js | msg=
  2764. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_voice_clone_ref' doesn't exist
  2765. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyVoiceCloneRefMapper.xml]
  2766. ### The error may involve defaultParameterMap
  2767. ### The error occurred while setting parameters
  2768. ### SQL: select tts_id from company_voice_clone_ref where company_id = ? and company_user_id = ? limit 1
  2769. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_voice_clone_ref' doesn't exist
  2770. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_voice_clone_ref' doesn't exist
  2771. GET /company/tcmScheduleReport/ | tcmScheduleReport.js | msg=Request method 'GET' not supported
  2772. GET /company/VoiceRoboticWx/ | VoiceRoboticWx.js | msg=Request method 'GET' not supported
  2773. GET /company/VoiceRoboticWx/export | VoiceRoboticWx.js | msg=
  2774. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2775. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyVoiceRoboticWxMapper.xml]
  2776. ### The error may involve defaultParameterMap
  2777. ### The error occurred while setting parameters
  2778. ### SQL: select id, intention, account_id, account_id, wx_dialog_id, num, add_num, create_time, create_user from company_voice_robotic_wx
  2779. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2780. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2781. GET /company/VoiceRoboticWx/list | VoiceRoboticWx.js | msg=
  2782. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2783. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyVoiceRoboticWxMapper.xml]
  2784. ### The error may involve defaultParameterMap
  2785. ### The error occurred while setting parameters
  2786. ### SQL: select id, intention, account_id, account_id, wx_dialog_id, num, add_num, create_time, create_user from company_voice_robotic_wx
  2787. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2788. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_user' in 'field list'
  2789. GET /company/wxDialog/ | wxDialog.js | msg=Request method 'GET' not supported
  2790. GET /company/wxUser/ | wxUser.js | msg=Request method 'GET' not supported
  2791. GET /company/wxUserGroup/ | wxUserGroup.js | msg=Request method 'GET' not supported
  2792. GET /companyWorkflow/externalApi/logs/page | externalApi.js | msg=
  2793. GET /course/courseAnswerLog/export | courseAnswerlogs.js | msg=
  2794. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2795. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2796. LEFT J' at line 13
  2797. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseAnswerLogsMapper.xml]
  2798. ### The error may involve defaultParameterMap
  2799. ### The error occurred while setting parameters
  2800. ### SQL: SELECT cal.*, uc.course_name AS course_name, uc.project AS project FROM fs_course_answer_logs cal INNER JOIN ( SELECT cal_inner.log_id FROM fs_course_answer_logs cal_inner LEFT JOIN fs_user_course uc_inner ON cal_inner.course_id = uc_inner.course_id WHERE cal_inner.company_id = ? ORDER BY cal_inner.log_id DESC LIMIT -20.0, 20 ) AS paged_ids ON cal.log_id = paged_ids.log_id LEFT JOIN fs_user_course uc ON cal.course_id = uc.course_id ORDER BY cal.log_id DESC
  2801. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2802. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2803. LEFT J' at line 13
  2804. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2805. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2806. LEFT J' at line 13
  2807. GET /course/courseAnswerLog/list | courseAnswerLog.js | msg=
  2808. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2809. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2810. LEFT J' at line 13
  2811. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseAnswerLogsMapper.xml]
  2812. ### The error may involve defaultParameterMap
  2813. ### The error occurred while setting parameters
  2814. ### SQL: SELECT cal.*, uc.course_name AS course_name, uc.project AS project FROM fs_course_answer_logs cal INNER JOIN ( SELECT cal_inner.log_id FROM fs_course_answer_logs cal_inner LEFT JOIN fs_user_course uc_inner ON cal_inner.course_id = uc_inner.course_id ORDER BY cal_inner.log_id DESC LIMIT -20.0, 20 ) AS paged_ids ON cal.log_id = paged_ids.log_id LEFT JOIN fs_user_course uc ON cal.course_id = uc.course_id ORDER BY cal.log_id DESC
  2815. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2816. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2817. LEFT J' at line 13
  2818. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20.0, 20
  2819. ) AS paged_ids ON cal.log_id = paged_ids.log_id
  2820. LEFT J' at line 13
  2821. GET /course/courseFinishTemp/ | courseFinishTemp.js | msg=Request method 'GET' not supported
  2822. GET /course/courseFinishTempParent/ | courseFinishTempParent.js | msg=Request method 'GET' not supported
  2823. GET /course/courseLink/ | courseLink.js | msg=Request method 'GET' not supported
  2824. GET /course/courseLink/queryQwIds | sopCourseLink.js | msg=
  2825. GET /course/courseRedPacketLog/ | courseRedPacketLog.js | msg=Request method 'GET' not supported
  2826. GET /course/courseRedPacketLog/courseListByCompanyId/ | courseRedPacketLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "courseListByCompanyId"
  2827. GET /course/courseRedPacketLog/videoList/ | courseRedPacketLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "videoList"
  2828. GET /course/courseTrafficLog/ | courseTrafficLog.js | msg=Request method 'GET' not supported
  2829. GET /course/courseTrafficLog/exportStatisticsSummary | courseTrafficLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "exportStatisticsSummary"
  2830. GET /course/courseTrafficLog/statisticsSummaryList | courseTrafficLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "statisticsSummaryList"
  2831. GET /course/courseWatchLog/ | courseWatchLog.js | msg=Request method 'GET' not supported
  2832. GET /course/period/ | period.js | msg=Request method 'GET' not supported
  2833. GET /course/period/getDays | userCoursePeriod.js | msg=
  2834. GET /course/playSourceConfig/ | coursePlaySourceConfig.js | msg=Request method 'GET' not supported
  2835. GET /course/playSourceConfig/queryAgreementConfig | coursePlaySourceConfig.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryAgreementConfig"
  2836. GET /course/sop/ | appIdList.js | msg=Request method 'GET' not supported
  2837. GET /course/sop/export | sop.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'corpId' in 'class com.fs.course.domain.FsCourseSop'
  2838. GET /course/sopLogs/ | sopLogs.js | msg=Request method 'GET' not supported
  2839. GET /course/sopLogs/list | sopLogs.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "list"
  2840. GET /course/trainingCamp/list | trainingCamp.js | msg=Required request parameter 'scs' for method parameter type String is not present
  2841. GET /course/userCourse/ | userCourse.js | msg=Request method 'GET' not supported
  2842. GET /course/userCourse/copy/ | userCourse.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "copy"
  2843. GET /course/userCourse/export | userCourse.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2844. GET /course/userCourse/public/ | userCoursePublic.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "public"
  2845. GET /course/userCourse/publicExport | userCoursePublic.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "publicExport"
  2846. GET /course/userCourse/publicList | userCoursePublic.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "publicList"
  2847. GET /course/userCourse/selectCourseOptionsList | userWatchCourseStatistics.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "selectCourseOptionsList"
  2848. GET /course/userCourseCategory/ | userCourseCategory.js | msg=Request method 'GET' not supported
  2849. GET /course/userCourseCategory/getCateListByPid/ | userCourseCategory.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getCateListByPid"
  2850. GET /course/userCourseCategory/importTemplate | userCourseCategory.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importTemplate"
  2851. GET /course/userCourseVideo/ | userCourseVideo.js | msg=Request method 'GET' not supported
  2852. GET /course/userCourseVideo/getChooseCourseVideoList | userCourseVideo.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getChooseCourseVideoList"
  2853. GET /course/userCourseVideo/getSort/ | userCourseVideo.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getSort"
  2854. GET /course/userCourseVideo/getVideoListLikeName | userCourseVideo.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getVideoListLikeName"
  2855. GET /course/userWatchCourseStatistics/ | userWatchCourseStatistics.js | msg=Request method 'GET' not supported
  2856. GET /course/userWatchStatistics/ | userWatchStatistics.js | msg=Request method 'GET' not supported
  2857. GET /crm/customer/exportLine | customer.js | msg=Request method 'GET' not supported
  2858. GET /crm/customer/getCustomerDetails/ | customer.js | msg=
  2859. GET /crm/customer/getCustomerDetails1/ | customer.js | msg=
  2860. GET /crm/customer/getCustomerList | customer.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression 'maps.attritionLevel != null'. Cause: org.apache.ibatis.ognl.NoSuchPropertyException: com.fs.crm.param.CrmCustomerListQueryParam.attritionLevel
  2861. GET /crm/customer/getCustomerListByIds | customer.js | msg=Required request parameter 'customerIds' for method parameter type String is not present
  2862. GET /crm/customer/getLineCustomerDetails/ | customer.js | msg=Request method 'GET' not supported
  2863. GET /crm/customer/getLineCustomerList | customer.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression 'maps.attritionLevel != null'. Cause: org.apache.ibatis.ognl.NoSuchPropertyException: com.fs.crm.param.CrmLineCustomerListQueryParam.attritionLevel
  2864. GET /crm/customer/getMyAssistList | customer.js | msg=
  2865. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_assist' doesn't exist
  2866. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmCustomerMapper.xml]
  2867. ### The error may involve defaultParameterMap
  2868. ### The error occurred while setting parameters
  2869. ### SQL: SELECT count(0) FROM crm_customer_assist ca LEFT JOIN crm_customer c ON c.customer_id = ca.customer_id LEFT JOIN crm_customer_user cu ON c.customer_user_id = cu.customer_user_id WHERE c.is_pool = 0 AND c.is_del = 0 AND ca.company_id = ? AND ca.company_user_id = ?
  2870. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_assist' doesn't exist
  2871. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_assist' doesn't exist
  2872. GET /crm/customer/lineList | customer.js | msg=Request method 'GET' not supported
  2873. GET /crm/customer/list | customer.js | msg=Request method 'GET' not supported
  2874. GET /crm/customer/query/ | customer.js | msg=Request method 'GET' not supported
  2875. GET /crm/customer/query1/ | customer.js | msg=Request method 'GET' not supported
  2876. GET /crm/customer/queryLine/ | customer.js | msg=Request method 'GET' not supported
  2877. GET /crm/customerContacts/ | customerContacts.js | msg=Request method 'GET' not supported
  2878. GET /crm/customerContacts/export | customerContacts.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2879. GET /crm/customerExt/ | customerExt.js | msg=Request method 'GET' not supported
  2880. GET /crm/customerExt/export | customerExt.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2881. GET /crm/customerLevel/getCustomerLevelOption | customerLevel.js | msg=
  2882. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_level' doesn't exist
  2883. ### The error may exist in com/fs/crm/mapper/CrmCustomerLevelMapper.java (best guess)
  2884. ### The error may involve defaultParameterMap
  2885. ### The error occurred while setting parameters
  2886. ### SQL: SELECT id,name,status,sort FROM crm_customer_level
  2887. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_level' doesn't exist
  2888. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.crm_customer_level' doesn't exist
  2889. GET /crm/customerLogs/ | customerLogs.js | msg=Request method 'GET' not supported
  2890. GET /crm/customerProperty/ | customerProperty.js | msg=Request method 'GET' not supported
  2891. GET /crm/customerProperty/list/ | customerProperty.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "list"
  2892. GET /crm/customerPropertyTemplate/ | propertyTemplate.js | msg=Request method 'GET' not supported
  2893. GET /crm/customerUser/ | customerUser.js | msg=Request method 'GET' not supported
  2894. GET /crm/customerVisit/ | customerVisit.js | msg=Request method 'GET' not supported
  2895. GET /crm/statistics/exportCustomer | statistics.js | msg=
  2896. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2897. ### The error may exist in com/fs/crm/mapper/CrmCustomerMapper.java (best guess)
  2898. ### The error may involve com.fs.crm.mapper.CrmCustomerMapper.selectCrmCustomerStatisticsList-Inline
  2899. ### The error occurred while setting parameters
  2900. ### SQL: select u.user_id, u.nick_name,d.dept_name, count( IF ( cu.is_pool =0, 1, NULL )) as receive_count, count( IF ( cu.is_pool =1, 1, NULL )) as pool_count from crm_customer_user cu left join company_user u on u.user_id=cu.company_user_id left join company_dept d on d.dept_id=u.dept_id where 1=1 and cu.company_user_id IN group by cu.company_user_id
  2901. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2902. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2903. GET /crm/statistics/exportCustomerCycle | statistics.js | msg=
  2904. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  2905. ### The error may exist in com/fs/crm/mapper/CrmCustomerMapper.java (best guess)
  2906. ### The error may involve com.fs.crm.mapper.CrmCustomerMapper.selectCrmCustomerCycleStatisticsList-Inline
  2907. ### The error occurred while setting parameters
  2908. ### SQL: select u.nick_name,ROUND(AVG(DATEDIFF(o.create_time, cu.create_time))) AS customerCycle,count(1) customerOkNum from fs_store_order o left join crm_customer cu ON o.customer_id = cu.customer_id LEFT JOIN company_user u on u.user_id=o.company_user_id WHERE is_first=1 and cu.create_user_id IN group by o.company_user_id
  2909. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  2910. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  2911. GET /crm/statistics/exportCustomerFull | statistics.js | msg=
  2912. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2913. ### The error may exist in com/fs/crm/mapper/CrmCustomerMapper.java (best guess)
  2914. ### The error may involve com.fs.crm.mapper.CrmCustomerMapper.selectCrmCustomerFullStatisticsList-Inline
  2915. ### The error occurred while setting parameters
  2916. ### SQL: select u.user_id, u.nick_name,d.dept_name, count( IF ( cu.is_pool =0, 1, NULL )) as receive_count, count(1) as pool_count from crm_customer_user cu left join company_user u on u.user_id=cu.company_user_id left join company_dept d on d.dept_id=u.dept_id where 1=1 and cu.company_user_id IN group by cu.company_user_id
  2917. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2918. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.company_user_id' at line 1
  2919. GET /crm/statistics/exportCustomerNum | statistics.js | msg=
  2920. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2921. ### The error may exist in com/fs/crm/mapper/CrmCustomerMapper.java (best guess)
  2922. ### The error may involve com.fs.crm.mapper.CrmCustomerMapper.selectCrmCustomerNumStatisticsList-Inline
  2923. ### The error occurred while setting parameters
  2924. ### SQL: select u.user_id, u.nick_name,d.dept_name, count( IF ( cu.visit_status =4, 1, NULL )) as customerOkNum, count(*) as customerNum from crm_customer cu left join company_user u on u.user_id=cu.create_user_id left join company_dept d on d.dept_id=u.dept_id where 1=1 and cu.create_user_id IN group by cu.create_user_id
  2925. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2926. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2927. GET /crm/statistics/exportCustomerRate | statistics.js | msg=
  2928. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2929. ### The error may exist in com/fs/crm/mapper/CrmCustomerMapper.java (best guess)
  2930. ### The error may involve com.fs.crm.mapper.CrmCustomerMapper.selectCrmCustomerRateStatisticsList-Inline
  2931. ### The error occurred while setting parameters
  2932. ### SQL: select u.user_id, u.nick_name,d.dept_name, count( IF ( cu.visit_status =4, 1, NULL )) as customerOkNum, count(*) as customerNum ,(COUNT(IF(cu.visit_status = 4, 1, NULL)) / COUNT(*)) * 100 AS customerRate from crm_customer cu left join company_user u on u.user_id=cu.create_user_id left join company_dept d on d.dept_id=u.dept_id where 1=1 and cu.create_user_id IN group by cu.create_user_id
  2933. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2934. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by cu.create_user_id' at line 1
  2935. GET /crm/statistics/exportCustomerVisit | statistics.js | msg=
  2936. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by v.company_user_id' at line 1
  2937. ### The error may exist in com/fs/crm/mapper/CrmCustomerVisitMapper.java (best guess)
  2938. ### The error may involve com.fs.crm.mapper.CrmCustomerVisitMapper.selectCrmCustomerVisitStatisticsList-Inline
  2939. ### The error occurred while setting parameters
  2940. ### SQL: select u.user_id, u.nick_name,d.dept_name, IFNULL(COUNT(distinct v.customer_id),0) as customer_count, IFNULL(COUNT(v.visit_id ),0) as visit_count from crm_customer_visit v left join company_user u on u.user_id=v.company_user_id left join company_dept d on d.dept_id=u.dept_id where 1=1 and v.company_user_id IN group by v.company_user_id
  2941. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by v.company_user_id' at line 1
  2942. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by v.company_user_id' at line 1
  2943. GET /fastGpt/fastgptChatArtificialWords/ | fastgptChatArtificialWords.js | msg=Request method 'GET' not supported
  2944. GET /fastGpt/fastgptChatArtificialWords/export | fastgptChatArtificialWords.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2945. GET /fastGpt/fastGptChatKeyword/ | fastGptChatKeyword.js | msg=Request method 'GET' not supported
  2946. GET /fastGpt/fastGptChatKeyword/export | fastGptChatKeyword.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2947. GET /fastGpt/fastGptChatMsg/ | fastGptChatMsg.js | msg=Request method 'GET' not supported
  2948. GET /fastGpt/fastGptChatMsgLogs/ | fastGptChatMsgLogs.js | msg=Request method 'GET' not supported
  2949. GET /fastGpt/fastGptChatSession/ | fastGptChatSession.js | msg=Request method 'GET' not supported
  2950. GET /fastGpt/fastGptChatSession/export | fastGptChatSession.js | msg=
  2951. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'userInfo' in 'field list'
  2952. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptChatSessionMapper.xml]
  2953. ### The error may involve defaultParameterMap
  2954. ### The error occurred while setting parameters
  2955. ### SQL: select session_id,remind_time,is_reply,last_time,remind_status,remind_count,qw_ext_id,qw_user_id,chat_id,is_artificial, user_id, kf_id, create_time, update_time, status, company_id, is_look, user_type, nick_name, avatar,userInfo from fastgpt_chat_session
  2956. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'userInfo' in 'field list'
  2957. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'userInfo' in 'field list'
  2958. GET /fastGpt/fastGptCollection/ | fastGptCollection.js | msg=Request method 'GET' not supported
  2959. GET /fastGpt/fastGptCollentionData/ | fastGptCollentionData.js | msg=Request method 'GET' not supported
  2960. GET /fastGpt/fastGptDataset/ | fastGptDataset.js | msg=Request method 'GET' not supported
  2961. GET /fastGpt/fastGptDataset/export | fastGptDataset.js | msg=Request method 'GET' not supported
  2962. GET /fastGpt/fastGptDataset/syncDataset | fastGptDataset.js | msg=
  2963. GET /fastGpt/fastgptEventLogTotal/ | fastgptEventLogTotal.js | msg=Request method 'GET' not supported
  2964. GET /fastGpt/fastgptEventLogTotal/list | fastgptEventLogTotal.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "list"
  2965. GET /fastGpt/fastGptKeywordSend/ | fastGptKeywordSend.js | msg=Request method 'GET' not supported
  2966. GET /fastGpt/fastGptKeywordSend/list | fastGptKeywordSend.js | msg=
  2967. GET /fastGpt/fastGptRole/ | role.js | msg=Request method 'GET' not supported
  2968. GET /fastGpt/fastGptRoleTag/ | fastGptRoleTag.js | msg=Request method 'GET' not supported
  2969. GET /fastGpt/fastGptRoleTag/getListByRoleId/ | fastGptRoleTag.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getListByRoleId"
  2970. GET /fastGpt/fastGptUser/ | fastGptUser.js | msg=Request method 'GET' not supported
  2971. GET /his/diagnosis/ | firstDiagnosis.js | msg=Request method 'GET' not supported
  2972. GET /his/doctor/export | doctor.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  2973. GET /his/doctor/getChooseDoctorList | doctor.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getChooseDoctorList"
  2974. GET /his/follow/ | follow.js | msg=Request method 'GET' not supported
  2975. GET /his/follow/statistics | follow.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "statistics"
  2976. GET /his/FsFollowReport/ | FsFollowReport.js | msg=Request method 'GET' not supported
  2977. GET /his/FsFollowReport/export | FsFollowReport.js | msg=请筛选数据导出
  2978. GET /his/integralGoods/ | integralGoods.js | msg=Request method 'GET' not supported
  2979. GET /his/integralGoods/getChooseIntegralGoodsList | integralGoods.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getChooseIntegralGoodsList"
  2980. GET /his/integralOrder/ | integralOrder.js | msg=Request method 'GET' not supported
  2981. GET /his/integralOrder/finishOrder/ | integralOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "finishOrder"
  2982. GET /his/integralOrder/getExpress/ | integralOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getExpress"
  2983. GET /his/integralOrder/importUpdateOrderTemplate | integralOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importUpdateOrderTemplate"
  2984. GET /his/integralOrder/queryPhone/ | integralOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  2985. GET /knowledge/audit/audited | knowledge.js | msg=
  2986. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  2987. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyKnowledgeAuditMapper.xml]
  2988. ### The error may involve defaultParameterMap
  2989. ### The error occurred while setting parameters
  2990. ### SQL: select id, company_id, knowledge_id, source_type, source_id, content, suggestion, audit_result, audit_comment, auditor, audit_time, del_flag, create_by, create_time, update_by, update_time from company_knowledge_audit where del_flag = 0 and company_id = ? and audit_result = ? order by create_time desc
  2991. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  2992. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  2993. GET /knowledge/audit/pending | knowledge.js | msg=
  2994. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  2995. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyKnowledgeAuditMapper.xml]
  2996. ### The error may involve defaultParameterMap
  2997. ### The error occurred while setting parameters
  2998. ### SQL: select id, company_id, knowledge_id, source_type, source_id, content, suggestion, audit_result, audit_comment, auditor, audit_time, del_flag, create_by, create_time, update_by, update_time from company_knowledge_audit where del_flag = 0 and company_id = ? order by create_time desc
  2999. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  3000. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_audit' doesn't exist
  3001. GET /knowledge/base/list | knowledge.js | msg=
  3002. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_base' doesn't exist
  3003. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyKnowledgeBaseMapper.xml]
  3004. ### The error may involve defaultParameterMap
  3005. ### The error occurred while setting parameters
  3006. ### SQL: select id, company_id, title, base_id, question, answer, industry_type, source, audit_status, audit_comment, auditor, audit_time, use_count, fastgpt_id, sync_status, sync_time, del_flag, create_by, create_time, update_by, update_time from company_knowledge_base where del_flag = 0 and company_id = ? order by create_time desc
  3007. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_base' doesn't exist
  3008. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_base' doesn't exist
  3009. GET /knowledge/suggestion/list | knowledge.js | msg=
  3010. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_suggestion' doesn't exist
  3011. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyKnowledgeSuggestionMapper.xml]
  3012. ### The error may involve defaultParameterMap
  3013. ### The error occurred while setting parameters
  3014. ### SQL: select id, company_id, type, description, suggestion, impact, status, apply_time, del_flag, create_by, create_time, update_by, update_time from company_knowledge_suggestion where del_flag = 0 and company_id = ? order by create_time desc
  3015. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_suggestion' doesn't exist
  3016. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.company_knowledge_suggestion' doesn't exist
  3017. GET /live/config/ | liveQuestionLive.js | msg=Request method 'GET' not supported
  3018. GET /live/config/export | liveQuestionLive.js | msg=
  3019. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3020. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveWatchConfigMapper.xml]
  3021. ### The error may involve defaultParameterMap
  3022. ### The error occurred while setting parameters
  3023. ### SQL: select id, live_id, participate_condition, watch_duration, action, receive_prompt, red_packet_type, red_packet_amount, red_packet_random_amount, red_packet_count, red_packet_receive_method, red_packet_receive_time_limit, red_packet_withdraw_condition, red_packet_guide, red_packet_guide_text, score_amount, score_max_receiver, score_guide, score_guide_link, score_guide_text, create_time, create_by, update_time, update_by, configJson from live_watch_config
  3024. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3025. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3026. GET /live/config/list | liveQuestionLive.js | msg=
  3027. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3028. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveWatchConfigMapper.xml]
  3029. ### The error may involve defaultParameterMap
  3030. ### The error occurred while setting parameters
  3031. ### SQL: select id, live_id, participate_condition, watch_duration, action, receive_prompt, red_packet_type, red_packet_amount, red_packet_random_amount, red_packet_count, red_packet_receive_method, red_packet_receive_time_limit, red_packet_withdraw_condition, red_packet_guide, red_packet_guide_text, score_amount, score_max_receiver, score_guide, score_guide_link, score_guide_text, create_time, create_by, update_time, update_by, configJson from live_watch_config
  3032. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3033. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'configJson' in 'field list'
  3034. GET /live/coupon/ | liveCoupon.js | msg=Request method 'GET' not supported
  3035. GET /live/coupon/issue/ | liveCouponIssue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "issue"
  3036. GET /live/coupon/listCoupon | liveCoupon.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3037. GET /live/coupon/listLiveCoupon | liveCoupon.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3038. GET /live/coupon/listOn | liveCoupon.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3039. GET /live/coupon/user/ | liveCouponUser.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "user"
  3040. GET /live/gift/ | gift.js | msg=Request method 'GET' not supported
  3041. GET /live/live/ | live.js | msg=Request method 'GET' not supported
  3042. GET /live/live/getCompanyDropList | live.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getCompanyDropList"
  3043. GET /live/live/getQwCorpList/ | live.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getQwCorpList"
  3044. GET /live/live/getTagsListByCorpId | live.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getTagsListByCorpId"
  3045. GET /live/live/living/ | live.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "living"
  3046. GET /live/live/selectCompanyTalent | live.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "selectCompanyTalent"
  3047. GET /live/liveAfterSales/ | liveAfterSales.js | msg=Request method 'GET' not supported
  3048. GET /live/liveAnchor/ | liveAnchor.js | msg=Request method 'GET' not supported
  3049. GET /live/liveGoods/ | liveGoods.js | msg=Request method 'GET' not supported
  3050. GET /live/liveGoods/list | liveGoods.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3051. GET /live/liveLotteryConf/ | liveLotteryConf.js | msg=Request method 'GET' not supported
  3052. GET /live/liveLotteryConf/getGoods/ | liveLotteryProductConf.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getGoods"
  3053. GET /live/liveLotteryRecord/ | liveLotteryRecord.js | msg=Request method 'GET' not supported
  3054. GET /live/liveLotteryRecord/export | liveLotteryRecord.js | msg=
  3055. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3056. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRecordMapper.xml]
  3057. ### The error may involve defaultParameterMap
  3058. ### The error occurred while setting parameters
  3059. ### SQL: select lottery_id, live_id, lottery_status, create_time, update_time, create_by, update_by from live_lottery_record
  3060. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3061. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3062. GET /live/liveLotteryRecord/list | liveLotteryRecord.js | msg=
  3063. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3064. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRecordMapper.xml]
  3065. ### The error may involve defaultParameterMap
  3066. ### The error occurred while setting parameters
  3067. ### SQL: select lottery_id, live_id, lottery_status, create_time, update_time, create_by, update_by from live_lottery_record
  3068. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3069. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3070. GET /live/liveLotteryRegistration/ | liveLotteryRegistration.js | msg=Request method 'GET' not supported
  3071. GET /live/liveMsg/ | liveMsg.js | msg=Request method 'GET' not supported
  3072. GET /live/liveOrder/createErpOrder | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "createErpOrder"
  3073. GET /live/liveOrder/exportZmNew | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "exportZmNew"
  3074. GET /live/liveOrder/express/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "express"
  3075. GET /live/liveOrder/getByOrderId/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getByOrderId"
  3076. GET /live/liveOrder/getEroOrder | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getEroOrder"
  3077. GET /live/liveOrder/getLiveOrderTimeGranularity | liveOrder.js | msg=null
  3078. GET /live/liveOrder/healthExportShippingOrder | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExportShippingOrder"
  3079. GET /live/liveOrder/importDeliveryNoteExpressTemplate | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importDeliveryNoteExpressTemplate"
  3080. GET /live/liveOrder/info/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "info"
  3081. GET /live/liveOrder/logs/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "logs"
  3082. GET /live/liveOrder/ltemlist/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "ltemlist"
  3083. GET /live/liveOrder/payments/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payments"
  3084. GET /live/liveOrder/queryAddress/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryAddress"
  3085. GET /live/liveOrder/queryPhone/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  3086. GET /live/liveOrder/syncExpress/ | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "syncExpress"
  3087. GET /live/liveOrder/tuiMoneyLogs?orderId= | liveOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "tuiMoneyLogs"
  3088. GET /live/liveOrderItem/ | liveOrderitems.js | msg=Request method 'GET' not supported
  3089. GET /live/liveOrderLogs/ | liveOrderLogs.js | msg=Request method 'GET' not supported
  3090. GET /live/liveRedConf/ | liveRedConf.js | msg=Request method 'GET' not supported
  3091. GET /live/liveUserFavorite/ | liveUserFavorite.js | msg=Request method 'GET' not supported
  3092. GET /live/liveUserFollow/ | liveUserFollow.js | msg=Request method 'GET' not supported
  3093. GET /live/liveUserLike/ | liveUserLike.js | msg=Request method 'GET' not supported
  3094. GET /live/liveUserLotteryRecord/ | liveUserLotteryRecord.js | msg=Request method 'GET' not supported
  3095. GET /live/liveVideo/ | liveVideo.js | msg=Request method 'GET' not supported
  3096. GET /live/liveVideo/liveVideoByLiveId/ | liveVideo.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "liveVideoByLiveId"
  3097. GET /live/liveVideo/preview/ | liveVideo.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "preview"
  3098. GET /live/liveWatchLog/ | liveWatchLog.js | msg=Request method 'GET' not supported
  3099. GET /live/liveWatchUser/blockUser/ | liveWatchUser.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "blockUser"
  3100. GET /live/record/ | record.js | msg=Request method 'GET' not supported
  3101. GET /live/task/ | task.js | msg=Request method 'GET' not supported
  3102. GET /live/task/exportBarrage | task.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "exportBarrage"
  3103. GET /live/words/ | words.js | msg=Request method 'GET' not supported
  3104. GET /liveData/liveData/dashboardData | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3105. GET /liveData/liveData/exportLiveUserDetail?liveId= | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is present but converted to null
  3106. GET /liveData/liveData/getLiveDataDetailByServer?liveId= | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is present but converted to null
  3107. GET /liveData/liveData/getLiveDataDetailBySql?liveId= | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is present but converted to null
  3108. GET /liveData/liveData/getLiveUserDetailListByServer?liveId= | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is present but converted to null
  3109. GET /liveData/liveData/getLiveUserDetailListBySql?liveId= | liveData.js | msg=Required request parameter 'liveId' for method parameter type Long is present but converted to null
  3110. GET /monitor/job/ | job.js | msg=Request method 'GET' not supported
  3111. GET /order/export | mergedOrder.js | msg=请选择导出订单类型!
  3112. GET /order/exportDetails | mergedOrder.js | msg=请选择导出订单类型!
  3113. GET /pay/wxPay/qrPay | pay.js | msg=
  3114. GET /qw/appContactWay/getContactWay | appContactWay.js | msg=Index: 0, Size: 0
  3115. GET /qw/autoTags/ | autoTags.js | msg=Request method 'GET' not supported
  3116. GET /qw/autoTagsLogs/ | autoTagsLogs.js | msg=Request method 'GET' not supported
  3117. GET /qw/autoTagsLogs/export | autoTagsLogs.js | msg=
  3118. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'addTime' in 'order clause'
  3119. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwAutoTagsLogsMapper.xml]
  3120. ### The error may involve defaultParameterMap
  3121. ### The error occurred while setting parameters
  3122. ### SQL: select id, auto_tag_id, type, qw_userid, external_user_id, effective_rules, add_time, chat_id, join_scene, company_id ,corp_id from qw_auto_tags_logs order by addTime desc
  3123. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'addTime' in 'order clause'
  3124. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'addTime' in 'order clause'
  3125. GET /qw/autoTagsRules/ | autoTagsRules.js | msg=Request method 'GET' not supported
  3126. GET /qw/contactBatch/ | contactBatch.js | msg=Request method 'GET' not supported
  3127. GET /qw/contactWay/ | contactWay.js | msg=Request method 'GET' not supported
  3128. GET /qw/contactWay/statistics | contactWay.js | msg=
  3129. GET /qw/contactWay/sync/ | contactWay.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "sync"
  3130. GET /qw/contactWayGroup/ | contactWayGroup.js | msg=Request method 'GET' not supported
  3131. GET /qw/contactWayLogs/ | contactWayLogs.js | msg=Request method 'GET' not supported
  3132. GET /qw/course/courseWatchLog/ | courseWatchLog.js | msg=Request method 'GET' not supported
  3133. GET /qw/course/courseWatchLog/getSignProjectName | courseWatchLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getSignProjectName"
  3134. GET /qw/course/courseWatchLog/statisticsListByCompany | courseWatchLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "statisticsListByCompany"
  3135. GET /qw/course/courseWatchLog/watchLogStatisticsExport | courseWatchLog.js | msg=请选择时间
  3136. GET /qw/drainageLink/ | drainageLink.js | msg=Request method 'GET' not supported
  3137. GET /qw/drainageLink/statistics | drainageLink.js | msg=
  3138. GET /qw/drainageLinkLogs/ | drainageLinkLogs.js | msg=Request method 'GET' not supported
  3139. GET /qw/externalContact/ | externalContact.js | msg=Request method 'GET' not supported
  3140. GET /qw/externalContact/getRepeat | externalContact.js | msg=未找到外部联系人
  3141. GET /qw/externalContact/getUserInfo/ | externalContact.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getUserInfo"
  3142. GET /qw/externalContact/syncAddMyExternalContact/ | externalContact.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "syncAddMyExternalContact"
  3143. GET /qw/externalContact/syncMyExternalContact/ | externalContact.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "syncMyExternalContact"
  3144. GET /qw/externalContact/unBindUserId/ | externalContact.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "unBindUserId"
  3145. GET /qw/externalContactCrm/export | externalContactCrm.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  3146. GET /qw/externalContactInfo/ | externalContactInfo.js | msg=Request method 'GET' not supported
  3147. GET /qw/externalContactTransferLog/ | externalContactTransferLog.js | msg=Request method 'GET' not supported
  3148. GET /qw/externalContactTransferLog/sync/ | externalContactTransferLog.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "sync"
  3149. GET /qw/friendCircle/ | friendCircle.js | msg=Request method 'GET' not supported
  3150. GET /qw/friendCircle/export | friendCircle.js | msg=
  3151. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3152. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleMapper.xml]
  3153. ### The error may involve defaultParameterMap
  3154. ### The error occurred while setting parameters
  3155. ### SQL: select id, content, attachments, jobid, status, type, result_errcode, result_errmsg, result_moment_id, result_invalid_sender_list, company_id, create_time, update_time from qw_friend_circle order by create_time desc
  3156. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3157. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3158. GET /qw/friendCircle/list | friendCircle.js | msg=
  3159. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3160. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleMapper.xml]
  3161. ### The error may involve defaultParameterMap
  3162. ### The error occurred while setting parameters
  3163. ### SQL: select id, content, attachments, jobid, status, type, result_errcode, result_errmsg, result_moment_id, result_invalid_sender_list, company_id, create_time, update_time from qw_friend_circle order by create_time desc
  3164. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3165. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'update_time' in 'field list'
  3166. GET /qw/friendCircleTask/ | friendCircleTask.js | msg=Request method 'GET' not supported
  3167. GET /qw/friendCircleTask/export | friendCircleTask.js | msg=
  3168. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3169. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleTaskMapper.xml]
  3170. ### The error may involve defaultParameterMap
  3171. ### The error occurred while setting parameters
  3172. ### SQL: select id, qw_user_id, publish_status, circle_id, company_id, result_moment_id, create_time, update_time from qw_friend_circle_task order by create_time desc
  3173. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3174. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3175. GET /qw/friendCircleTask/list | friendCircleTask.js | msg=
  3176. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3177. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleTaskMapper.xml]
  3178. ### The error may involve defaultParameterMap
  3179. ### The error occurred while setting parameters
  3180. ### SQL: select id, qw_user_id, publish_status, circle_id, company_id, result_moment_id, create_time, update_time from qw_friend_circle_task order by create_time desc
  3181. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3182. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3183. GET /qw/friendComments/ | friendComments.js | msg=Request method 'GET' not supported
  3184. GET /qw/friendComments/export | friendComments.js | msg=
  3185. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3186. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCommentsMapper.xml]
  3187. ### The error may involve defaultParameterMap
  3188. ### The error occurred while setting parameters
  3189. ### SQL: select id, moment_id, qw_user_id, comments_type, external_userid, userid, company_id, create_time, update_time from qw_friend_comments order by create_time desc
  3190. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3191. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3192. GET /qw/friendComments/list | friendComments.js | msg=
  3193. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3194. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCommentsMapper.xml]
  3195. ### The error may involve defaultParameterMap
  3196. ### The error occurred while setting parameters
  3197. ### SQL: select id, moment_id, qw_user_id, comments_type, external_userid, userid, company_id, create_time, update_time from qw_friend_comments order by create_time desc
  3198. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3199. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3200. GET /qw/friendCustomerList/ | friendCustomerList.js | msg=Request method 'GET' not supported
  3201. GET /qw/friendCustomerList/export | friendCustomerList.js | msg=
  3202. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3203. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCustomerListMapper.xml]
  3204. ### The error may involve defaultParameterMap
  3205. ### The error occurred while setting parameters
  3206. ### SQL: select id, moment_id, external_userid, qw_user_id, company_id, create_time, update_time from qw_friend_customer_list order by create_time desc
  3207. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3208. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3209. GET /qw/friendCustomerList/list | friendCustomerList.js | msg=
  3210. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3211. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCustomerListMapper.xml]
  3212. ### The error may involve defaultParameterMap
  3213. ### The error occurred while setting parameters
  3214. ### SQL: select id, moment_id, external_userid, qw_user_id, company_id, create_time, update_time from qw_friend_customer_list order by create_time desc
  3215. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3216. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list'
  3217. GET /qw/friendWelcome/ | friendWelcome.js | msg=Request method 'GET' not supported
  3218. GET /qw/friendWelcomeItem/ | friendWelcomeItem.js | msg=Request method 'GET' not supported
  3219. GET /qw/group_chat_user/export | group_chat_user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  3220. GET /qw/groupMsg/ | groupMsg.js | msg=Request method 'GET' not supported
  3221. GET /qw/groupMsg/getCountGroupMsgBaseUser/ | groupMsg.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getCountGroupMsgBaseUser"
  3222. GET /qw/groupMsg/getCountGroupMsgUser/ | groupMsg.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getCountGroupMsgUser"
  3223. GET /qw/groupMsgUser/ | groupMsgUser.js | msg=Request method 'GET' not supported
  3224. GET /qw/luckyBag/ | luckyBag.js | msg=Request method 'GET' not supported
  3225. GET /qw/luckyBagCollectRecord/ | luckyBagCollectRecord.js | msg=Request method 'GET' not supported
  3226. GET /qw/material/ | material.js | msg=Request method 'GET' not supported
  3227. GET /qw/materialGroup/ | materialGroup.js | msg=Request method 'GET' not supported
  3228. GET /qw/qw/QwWorkTask/ | QwWorkTask.js | msg=Request method 'GET' not supported
  3229. GET /qw/qwDept/treeselect | qwDept.js | msg=请选择企微主体
  3230. GET /qw/qwMsg/conversationList/ | im.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "conversationList"
  3231. GET /qw/qwMsg/getSession | im.js | msg=null
  3232. GET /qw/qwUserVoiceLog/ | qwUserVoiceLog.js | msg=Request method 'GET' not supported
  3233. GET /qw/QwWorkTask/ | QwWorkTask.js | msg=Request method 'GET' not supported
  3234. GET /qw/QwWorkTaskNew/ | QwWorkTaskNew.js | msg=Request method 'GET' not supported
  3235. GET /qw/sop/ | sop.js | msg=Request method 'GET' not supported
  3236. GET /qw/sop/getSopVoiceList | sop.js | msg=未找到SOP任务
  3237. GET /qw/sopTemp/ | sopTemp.js | msg=Request method 'GET' not supported
  3238. GET /qw/sopTemp/deptList | sopTemp.js | msg=
  3239. GET /qw/statistic/ | groupChatStatistic.js | msg=Request method 'GET' not supported
  3240. GET /qw/tag/ | tag.js | msg=Request method 'GET' not supported
  3241. GET /qw/tagGroup/ | tagGroup.js | msg=Request method 'GET' not supported
  3242. GET /qw/tagGroup/getAllList | tagGroup.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getAllList"
  3243. GET /qw/user/ | user.js | msg=Request method 'GET' not supported
  3244. GET /qw/user/getInfo/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getInfo"
  3245. GET /qw/user/getMyQwCompanyListAll | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getMyQwCompanyListAll"
  3246. GET /qw/user/getQwAllUserList | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getQwAllUserList"
  3247. GET /qw/user/getQwCompanyList | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getQwCompanyList"
  3248. GET /qw/user/getQwUserInfo | qwUser.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getQwUserInfo"
  3249. GET /qw/user/qwBindCloudHost/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "qwBindCloudHost"
  3250. GET /qw/user/qwUnbindCloudHost/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "qwUnbindCloudHost"
  3251. GET /qw/user/qwUserList/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "qwUserList"
  3252. GET /qw/user/relieveFastGptRoleById/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "relieveFastGptRoleById"
  3253. GET /qw/user/staffListPost | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "staffListPost"
  3254. GET /qw/user/updateFastGptRoleStatusById/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "updateFastGptRoleStatusById"
  3255. GET /qw/userBehaviorData/ | userBehaviorData.js | msg=Request method 'GET' not supported
  3256. GET /qw/userVideo/ | userVideo.js | msg=Request method 'GET' not supported
  3257. GET /qw/welcome/ | welcome.js | msg=Request method 'GET' not supported
  3258. GET /qw/welcome/export | welcome.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  3259. GET /qwSop/sopUserLogs/list | sopUserLogs.js | msg=
  3260. GET /qwSop/sopUserLogsInfo/list | sopUserLogsInfo.js | msg=
  3261. GET /shop/tag/ | api.js | msg=Request method 'GET' not supported
  3262. GET /store/city/ | city.js | msg=Request method 'GET' not supported
  3263. GET /store/collectionSchedule/ | collectionSchedule.js | msg=Request method 'GET' not supported
  3264. GET /store/healthRecord/ | healthRecord.js | msg=Request method 'GET' not supported
  3265. GET /store/icd/allIcd/ | icd.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "allIcd"
  3266. GET /store/inquiryOrder/ | inquiryOrder.js | msg=Request method 'GET' not supported
  3267. GET /store/inquiryOrder/doctor/ | inquiryOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "doctor"
  3268. GET /store/inquiryOrder/export | inquiryOrder.js | msg=你已经有正在导出的任务
  3269. GET /store/inquiryOrder/getWxaCodeInquiryOrderUnLimit/ | inquiryOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getWxaCodeInquiryOrderUnLimit"
  3270. GET /store/inquiryOrder/logList/ | inquiryOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "logList"
  3271. GET /store/inquiryOrder/messageFeedbackExport | inquiryOrder.js | msg=请筛选数据导出
  3272. GET /store/inquiryOrder/myExport | inquiryOrder.js | msg=请筛选数据导出
  3273. GET /store/inquiryOrderReport/ | inquiryOrderReport.js | msg=Request method 'GET' not supported
  3274. GET /store/inquiryOrderReport/export | inquiryOrderReport.js | msg=你已经有正在导出的任务
  3275. GET /store/inquiryOrderReport/getReportId/ | inquiryOrderReport.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getReportId"
  3276. GET /store/inquiryOrderReport/orderId/ | inquiryOrderReport.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "orderId"
  3277. GET /store/inquiryOrderReport/queryPatientMobile/ | inquiryOrderReport.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPatientMobile"
  3278. GET /store/material/ | material.js | msg=Request method 'GET' not supported
  3279. GET /store/materialGroup/ | materialGroup.js | msg=Request method 'GET' not supported
  3280. GET /store/materialGroup/export | materialGroup.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  3281. GET /store/package/ | package.js | msg=Request method 'GET' not supported
  3282. GET /store/package/packageList/ | package.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "packageList"
  3283. GET /store/package/privatePackageList | package.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "privatePackageList"
  3284. GET /store/packageOrder/ | packageOrder.js | msg=Request method 'GET' not supported
  3285. GET /store/packageOrder/export | packageOrder.js | msg=你已经有正在导出的任务
  3286. GET /store/packageOrder/getWxaCodePackageOrderUnLimit/ | packageOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getWxaCodePackageOrderUnLimit"
  3287. GET /store/packageOrder/getWxaCodeUnLimit/ | packageOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getWxaCodeUnLimit"
  3288. GET /store/packageOrder/myExport | packageOrder.js | msg=你已经有正在导出的任务
  3289. GET /store/packageOrder/payment/ | packageOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payment"
  3290. GET /store/packageOrder/queryPhone/ | packageOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  3291. GET /store/patient/ | patient.js | msg=Request method 'GET' not supported
  3292. GET /store/patient/export | patient.js | msg=
  3293. GET /store/patient/getPatient/ | patient.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getPatient"
  3294. GET /store/prescribe/ | prescribe.js | msg=Request method 'GET' not supported
  3295. GET /store/prescribe/Drug/ | prescribe.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "Drug"
  3296. GET /store/prescribe/export | prescribe.js | msg=你已经有正在导出的任务
  3297. GET /store/prescribe/getImg | prescribe.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getImg"
  3298. GET /store/store/menu/ | menu.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "menu"
  3299. GET /store/store/prescribe/ | prescribe.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "prescribe"
  3300. GET /store/store/prescribeDrug/ | prescribeDrug.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "prescribeDrug"
  3301. GET /store/store/shippingTemplates/ | shippingTemplates.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "shippingTemplates"
  3302. GET /store/store/storeAfterSales/ | storeAfterSales.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSales"
  3303. GET /store/store/storeAfterSales/export | storeAfterSales.js | msg=
  3304. GET /store/store/storeAfterSalesItem/ | storeAfterSalesItem.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSalesItem"
  3305. GET /store/store/storeAfterSalesStatus/ | storeAfterSalesStatus.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeAfterSalesStatus"
  3306. GET /store/store/storeCanvas/ | storeCanvas.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeCanvas"
  3307. GET /store/store/storeCart/ | storeCart.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeCart"
  3308. GET /store/store/storeOrder/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeOrder"
  3309. GET /store/store/storeOrder/createErpOrder | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "createErpOrder"
  3310. GET /store/store/storeOrder/exportItems | storeOrder.js | msg=
  3311. GET /store/store/storeOrder/exportItemsDetails | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "exportItemsDetails"
  3312. GET /store/store/storeOrder/getEroOrder | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getEroOrder"
  3313. GET /store/store/storeOrder/getErpAccount | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getErpAccount"
  3314. GET /store/store/storeOrder/getExpress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getExpress"
  3315. GET /store/store/storeOrder/healthExportItems | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExportItems"
  3316. GET /store/store/storeOrder/healthExportItemsDetails | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExportItemsDetails"
  3317. GET /store/store/storeOrder/healthExportShippingOrder | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExportShippingOrder"
  3318. GET /store/store/storeOrder/importDeliveryNoteExpressTemplate | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importDeliveryNoteExpressTemplate"
  3319. GET /store/store/storeOrder/importTemplate | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importTemplate"
  3320. GET /store/store/storeOrder/orderDimensionStatisticsExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "orderDimensionStatisticsExport"
  3321. GET /store/store/storeOrder/orderDimensionStatisticsList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "orderDimensionStatisticsList"
  3322. GET /store/store/storeOrder/orderItemsNum | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "orderItemsNum"
  3323. GET /store/store/storeOrder/payRemainExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payRemainExport"
  3324. GET /store/store/storeOrder/payRemainList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payRemainList"
  3325. GET /store/store/storeOrder/promotionExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "promotionExport"
  3326. GET /store/store/storeOrder/promotionList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "promotionList"
  3327. GET /store/store/storeOrder/queryAddress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryAddress"
  3328. GET /store/store/storeOrder/queryErpPhone | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryErpPhone"
  3329. GET /store/store/storeOrder/queryPhone/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  3330. GET /store/store/storeOrderItem/ | storeOrderItem.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderItem"
  3331. GET /store/store/storeOrderNotice/ | storeOrderNotice.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderNotice"
  3332. GET /store/store/storeOrderOffline/ | storeOrderOffline.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderOffline"
  3333. GET /store/store/storeOrderOffline/queryPhone/ | storeOrderOffline.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  3334. GET /store/store/storeOrderStatus/ | storeOrderStatus.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeOrderStatus"
  3335. GET /store/store/storePayment/ | storePayment.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storePayment"
  3336. GET /store/store/storeProduct/ | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProduct"
  3337. GET /store/store/storeProduct/bulkCopy/ | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "bulkCopy"
  3338. GET /store/store/storeProduct/copyStoreProduct?productId= | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "copyStoreProduct"
  3339. GET /store/store/storeProduct/export | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "export"
  3340. GET /store/store/storeProduct/getStoreTuiProductAttrValueList | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getStoreTuiProductAttrValueList"
  3341. GET /store/store/storeProduct/importTemplate | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "importTemplate"
  3342. GET /store/store/storeProduct/listBySearch | storeProduct.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "listBySearch"
  3343. GET /store/store/storeProductAttr/ | storeProductAttr.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductAttr"
  3344. GET /store/store/storeProductAttrValue/ | storeProductAttrValue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductAttrValue"
  3345. GET /store/store/storeProductCategory/ | storeProductCategory.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductCategory"
  3346. GET /store/store/storeProductDetails/ | storeProductDetails.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductDetails"
  3347. GET /store/store/storeProductGroup/ | storeProductGroup.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductGroup"
  3348. GET /store/store/storeProductPackage/ | storeProductPackage.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductPackage"
  3349. GET /store/store/storeProductPackage/listBySearch | storeProductPackage.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "listBySearch"
  3350. GET /store/store/storeProductRelation/ | storeProductRelation.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductRelation"
  3351. GET /store/store/storeProductReply/ | storeProductReply.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductReply"
  3352. GET /store/store/storeProductRule/ | storeProductRule.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductRule"
  3353. GET /store/store/storeProductTemplate/ | storeProductTemplate.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductTemplate"
  3354. GET /store/store/storeProductYuyue/ | storeProductYuyue.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeProductYuyue"
  3355. GET /store/store/storeShop/ | storeShop.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeShop"
  3356. GET /store/store/storeShopStaff/ | storeShopStaff.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeShopStaff"
  3357. GET /store/store/storeVisit/ | storeVisit.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "storeVisit"
  3358. GET /store/store/user/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "user"
  3359. GET /store/store/userAddress/ | userAddress.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "userAddress"
  3360. GET /store/storeAfterSales/ | storeAfterSales.js | msg=Request method 'GET' not supported
  3361. GET /store/storeAfterSales/codeId/ | storeAfterSales.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "codeId"
  3362. GET /store/storeAfterSales/export | storeAfterSales.js | msg=请筛选数据导出
  3363. GET /store/storeAfterSales/itemList/ | storeAfterSales.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "itemList"
  3364. GET /store/storeAfterSales/logList/ | storeAfterSales.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "logList"
  3365. GET /store/storeAfterSales/myExport | storeAfterSales.js | msg=请筛选数据导出
  3366. GET /store/storeOrder/ | storeOrder.js | msg=Request method 'GET' not supported
  3367. GET /store/storeOrder/createErpOrder | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "createErpOrder"
  3368. GET /store/storeOrder/createErpOrder/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "createErpOrder"
  3369. GET /store/storeOrder/export | storeOrder.js | msg=你已经有正在导出的任务
  3370. GET /store/storeOrder/exportItems | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "exportItems"
  3371. GET /store/storeOrder/follow/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "follow"
  3372. GET /store/storeOrder/getEroOrder | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getEroOrder"
  3373. GET /store/storeOrder/getEroOrder/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getEroOrder"
  3374. GET /store/storeOrder/getExpress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getExpress"
  3375. GET /store/storeOrder/healthExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExport"
  3376. GET /store/storeOrder/healthExportItems | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthExportItems"
  3377. GET /store/storeOrder/healthList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "healthList"
  3378. GET /store/storeOrder/logList/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "logList"
  3379. GET /store/storeOrder/ltemlist/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "ltemlist"
  3380. GET /store/storeOrder/myExport | storeOrder.js | msg=你已经有正在导出的任务
  3381. GET /store/storeOrder/orderItemsNum | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "orderItemsNum"
  3382. GET /store/storeOrder/payment/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payment"
  3383. GET /store/storeOrder/payRemainExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payRemainExport"
  3384. GET /store/storeOrder/payRemainList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "payRemainList"
  3385. GET /store/storeOrder/Prescribe/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "Prescribe"
  3386. GET /store/storeOrder/promotionExport | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "promotionExport"
  3387. GET /store/storeOrder/promotionList | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "promotionList"
  3388. GET /store/storeOrder/query/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "query"
  3389. GET /store/storeOrder/queryAddress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryAddress"
  3390. GET /store/storeOrder/queryPhone/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryPhone"
  3391. GET /store/storeOrder/syncExpress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "syncExpress"
  3392. GET /store/storeOrder/updateExpress/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "updateExpress"
  3393. GET /store/storeOrder/v2/ | storeOrder.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "v2"
  3394. GET /store/storePayment/ | storePayment.js | msg=Request method 'GET' not supported
  3395. GET /store/storePayment/getMyPaymentList | storePayment.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getMyPaymentList"
  3396. GET /store/storePayment/getStorePaymentList | storePayment.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getStorePaymentList"
  3397. GET /store/storeProduct/ | storeProduct.js | msg=Request method 'GET' not supported
  3398. GET /store/storeProductPackage/ | storeProductPackage.js | msg=Request method 'GET' not supported
  3399. GET /store/storeStatistics/exportInquiryOrder | statistics.js | msg=
  3400. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3401. ### The error may exist in com/fs/his/mapper/FsStoreOrderMapper.java (best guess)
  3402. ### The error may involve com.fs.his.mapper.FsStoreOrderMapper.selectFsInquiryOrderStatisticsList-Inline
  3403. ### The error occurred while setting parameters
  3404. ### SQL: select u.nick_name, count(o.order_id) as order_count,sum(IFNULL(o.pay_money,0)) as pay_price from fs_inquiry_order o left join company_user u on o.company_user_id=u.user_id where o.status > 1 and o.`company_user_id` IN group by o.company_user_id
  3405. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3406. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3407. GET /store/storeStatistics/exportPackageOrder | statistics.js | msg=
  3408. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3409. ### The error may exist in com/fs/his/mapper/FsStoreOrderMapper.java (best guess)
  3410. ### The error may involve com.fs.his.mapper.FsStoreOrderMapper.selectFsPackageOrderStatisticsList-Inline
  3411. ### The error occurred while setting parameters
  3412. ### SQL: select u.nick_name, count(o.order_id) as order_count,sum(IFNULL(o.pay_price,0)) as pay_price from fs_package_order o left join company_user u on o.company_user_id=u.user_id where o.status > 1 and o.`company_user_id` IN group by o.company_user_id
  3413. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3414. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3415. GET /store/storeStatistics/exportProduct | statistics.js | msg=此部门没有员工
  3416. GET /store/storeStatistics/exportStoreOrder | statistics.js | msg=
  3417. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3418. ### The error may exist in com/fs/his/mapper/FsStoreOrderMapper.java (best guess)
  3419. ### The error may involve com.fs.his.mapper.FsStoreOrderMapper.selectFsStoreOrderStatisticsList-Inline
  3420. ### The error occurred while setting parameters
  3421. ### SQL: select u.nick_name, count(o.order_id) as order_count,sum(IFNULL(o.pay_price,0)) as pay_price from fs_store_order o left join company_user u on o.company_user_id=u.user_id where o.status > 1 and o.`company_user_id` IN group by o.company_user_id
  3422. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3423. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by o.company_user_id' at line 1
  3424. GET /store/storeStatistics/exportStorePayment | statistics.js | msg=
  3425. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by p.company_user_id' at line 1
  3426. ### The error may exist in com/fs/his/mapper/FsStorePaymentMapper.java (best guess)
  3427. ### The error may involve com.fs.his.mapper.FsStorePaymentMapper.selectFsStorePaymentStatisticsList-Inline
  3428. ### The error occurred while setting parameters
  3429. ### SQL: select u.nick_name, count(p.payment_id) as order_count,sum(IFNULL(p.pay_money,0)) as pay_money from fs_store_payment p left join company_user u on p.company_user_id=u.user_id where p.status = 1 and p.`company_user_id` IN group by p.company_user_id
  3430. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by p.company_user_id' at line 1
  3431. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group by p.company_user_id' at line 1
  3432. GET /store/storeStatistics/product | statistics.js | msg=此部门没有员工
  3433. GET /store/user/ | user.js | msg=Request method 'GET' not supported
  3434. GET /store/user/export | user.js | msg=请筛选数据导出
  3435. GET /store/user/getUserAddr/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getUserAddr"
  3436. GET /store/user/getUserListLimit | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getUserListLimit"
  3437. GET /store/user/listBySearch | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "listBySearch"
  3438. GET /store/user/myExport | user.js | msg=请筛选数据导出
  3439. GET /store/user/queryvo/ | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "queryvo"
  3440. GET /store/userAddress/ | userAddress.js | msg=Request method 'GET' not supported
  3441. GET /store/userAddress/getAddress/ | userAddress.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getAddress"
  3442. GET /store/userCoupon/ | userCoupon.js | msg=Request method 'GET' not supported
  3443. GET /store/userOnlineState/ | userOnlineState.js | msg=Request method 'GET' not supported
  3444. GET /system/approval/ | approval.js | msg=Request method 'GET' not supported
  3445. GET /system/dict/data/allList | data.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "allList"
  3446. GET /system/dict/data/type/ | gift.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "type"
  3447. GET /tool/gen/ | gen.js | msg=Request method 'GET' not supported
  3448. GET /tool/gen/genCode/ | gen.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "genCode"
  3449. GET /tool/gen/preview/ | gen.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "preview"
  3450. GET /tool/gen/synchDb/ | gen.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "synchDb"
  3451. GET /user/fsUser/ | fsUser.js | msg=Request method 'GET' not supported
  3452. GET /user/fsUser/getUserListLikeName | user.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "getUserListLikeName"
  3453. GET /user/fsUser/member/ | fsUser.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "member"
  3454. GET /workflow/lobster/optimization/config | lobster.js | msg=Required request parameter 'workflowId' for method parameter type Long is not present
  3455. GET /workflow/lobster/prompt/list | lobster.js | msg=PreparedStatementCallback; bad SQL grammar [SELECT * FROM lobster_system_prompt WHERE enabled=1 ORDER BY company_id, industry_type, sort_order LIMIT ? OFFSET ?]; nested exception is java.sql.SQLException: No value specified for parameter 1
  3456. GET /workflow/lobster/sales-corpus/list | lobster.js | msg=PreparedStatementCallback; bad SQL grammar [SELECT * FROM lobster_learning_corpus WHERE company_id=? ORDER BY create_time DESC LIMIT ? OFFSET ?]; nested exception is java.sql.SQLException: No value specified for parameter 2
  3457. GET /workflow/template/listTemplate | workflowLobster.js | msg=Required request parameter 'status' for method parameter type Integer is not present
  3458. POST /adv/advertiser | advertiser.js | msg=
  3459. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3460. ### The error may exist in com/fs/newAdv/mapper/AdvertiserMapper.java (best guess)
  3461. ### The error may involve com.fs.newAdv.mapper.AdvertiserMapper.insert-Inline
  3462. ### The error occurred while setting parameters
  3463. ### SQL: INSERT INTO adv_advertiser VALUES
  3464. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3465. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3466. POST /adv/callback-account | callbackAccount.js | msg=
  3467. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3468. ### The error may exist in com/fs/newAdv/mapper/CallbackAccountMapper.java (best guess)
  3469. ### The error may involve com.fs.newAdv.mapper.CallbackAccountMapper.insert-Inline
  3470. ### The error occurred while setting parameters
  3471. ### SQL: INSERT INTO adv_callback_account VALUES
  3472. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3473. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3474. POST /adv/callback-account/queryEventType/ | callbackAccount.js | msg=Request method 'POST' not supported
  3475. POST /adv/callback-account/saveEventType/ | callbackAccount.js | msg=Request method 'POST' not supported
  3476. POST /adv/channel/addOrUpdate | channel.js | msg=
  3477. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3478. ### The error may exist in com/fs/newAdv/mapper/AdvChannelMapper.java (best guess)
  3479. ### The error may involve com.fs.newAdv.mapper.AdvChannelMapper.insert-Inline
  3480. ### The error occurred while setting parameters
  3481. ### SQL: INSERT INTO adv_channel VALUES
  3482. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3483. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3484. POST /adv/channel/saveBatch | channel.js | msg=
  3485. POST /adv/domains | domain.js | msg=域名名称不能为空
  3486. POST /adv/landing-page-templates | landingPageTemplate.js | msg=
  3487. ### Error updating database. Cause: java.sql.SQLException: Field 'template_name' doesn't have a default value
  3488. ### The error may exist in com/fs/newAdv/mapper/LandingPageTemplateMapper.java (best guess)
  3489. ### The error may involve com.fs.newAdv.mapper.LandingPageTemplateMapper.insert-Inline
  3490. ### The error occurred while setting parameters
  3491. ### SQL: INSERT INTO adv_landing_page_template ( id, creator, updater ) VALUES ( ?, ?, ? )
  3492. ### Cause: java.sql.SQLException: Field 'template_name' doesn't have a default value
  3493. ; Field 'template_name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'template_name' doesn't have a default value
  3494. POST /adv/landing-page-templates/ | landingPageTemplate.js | msg=
  3495. ### Error updating database. Cause: java.sql.SQLException: Field 'template_name' doesn't have a default value
  3496. ### The error may exist in com/fs/newAdv/mapper/LandingPageTemplateMapper.java (best guess)
  3497. ### The error may involve com.fs.newAdv.mapper.LandingPageTemplateMapper.insert-Inline
  3498. ### The error occurred while setting parameters
  3499. ### SQL: INSERT INTO adv_landing_page_template ( id, creator, updater ) VALUES ( ?, ?, ? )
  3500. ### Cause: java.sql.SQLException: Field 'template_name' doesn't have a default value
  3501. ; Field 'template_name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'template_name' doesn't have a default value
  3502. POST /adv/project/add | project.js | msg=
  3503. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3504. ### The error may exist in com/fs/newAdv/mapper/AdvProjectMapper.java (best guess)
  3505. ### The error may involve com.fs.newAdv.mapper.AdvProjectMapper.insert-Inline
  3506. ### The error occurred while setting parameters
  3507. ### SQL: INSERT INTO adv_project VALUES
  3508. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3509. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3510. POST /adv/promotion-account | promotionAccount.js | msg=
  3511. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3512. ### The error may exist in com/fs/newAdv/mapper/PromotionAccountMapper.java (best guess)
  3513. ### The error may involve com.fs.newAdv.mapper.PromotionAccountMapper.insert-Inline
  3514. ### The error occurred while setting parameters
  3515. ### SQL: INSERT INTO adv_promotion_account VALUES
  3516. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3517. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3518. POST /adv/site | site.js | msg=
  3519. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3520. ### The error may exist in com/fs/newAdv/mapper/SiteMapper.java (best guess)
  3521. ### The error may involve com.fs.newAdv.mapper.SiteMapper.insert-Inline
  3522. ### The error occurred while setting parameters
  3523. ### SQL: INSERT INTO adv_site VALUES
  3524. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3525. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3526. POST /adv/site/enable/ | site.js | msg=Request method 'POST' not supported
  3527. POST /aicall/account/edit | aiModel.js | msg=
  3528. POST /aicall/account/list | aiModel.js | msg=
  3529. POST /chat/chatDatasetFile | chatDatasetFile.js | msg=Request method 'POST' not supported
  3530. POST /chat/chatRole | chatRole.js | msg=
  3531. POST /company/aiSipCall/aiSipCallUser | aiSipCallUser.js | msg=操作失败
  3532. POST /company/aiSipCall/aiSipCallUser/getToolbarBasicParam | aiSipCallUser.js | msg=分机号参数缺失
  3533. POST /company/aiSipCall/llmAgentAccount | aiSipCallLlmAgentAccount.js | msg=
  3534. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3535. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallLlmAgentAccountMapper.xml]
  3536. ### The error may involve defaultParameterMap
  3537. ### The error occurred while setting parameters
  3538. ### SQL: insert into ai_sip_call_llm_agent_account
  3539. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3540. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3541. POST /company/aiSipCall/outboundCdr | aiSipCallOutboundCdr.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'id' of 'class com.fs.aiSipCall.domain.AiSipCallOutboundCdr' with value '2058920765030866945' Cause: java.lang.IllegalArgumentException: argument type mismatch
  3542. POST /company/aiSipCall/outboundCdr/add/custcallrecord | aiSipCallOutboundCdr.js | msg=操作失败
  3543. POST /company/aiSipCall/outboundCdr/syncByUuid | aiSipCallOutboundCdr.js | msg=uuid不能为空
  3544. POST /company/aiSipCall/phone | aiSipCallPhone.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'id' of 'class com.fs.aiSipCall.domain.AiSipCallPhone' with value '2058920765378994177' Cause: java.lang.IllegalArgumentException: argument type mismatch
  3545. POST /company/aiSipCall/task | aiSipCallTask.js | msg=操作失败
  3546. POST /company/aiSipCall/task/startTask/ | aiSipCallTask.js | msg=Request method 'POST' not supported
  3547. POST /company/aiSipCall/task/stopTask/ | aiSipCallTask.js | msg=Request method 'POST' not supported
  3548. POST /company/aiSipCall/voiceTtsAliyun | aiSipCallVoiceTtsAliyun.js | msg=
  3549. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3550. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallVoiceTtsAliyunMapper.xml]
  3551. ### The error may involve defaultParameterMap
  3552. ### The error occurred while setting parameters
  3553. ### SQL: insert into ai_sip_call_voice_tts_aliyun
  3554. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3555. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3556. POST /company/apply/audit | companyApply.js | msg=审核状态不能为空
  3557. POST /company/companUsercard/sendCustomerBatchMsg | companyUserCard.js | msg=模板CODE不能为空
  3558. POST /company/companyBindUser | companyBindUser.js | msg=
  3559. ### Error updating database. Cause: java.sql.SQLException: Field 'company_user_id' doesn't have a default value
  3560. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyDomainBindUserMapper.xml]
  3561. ### The error may involve defaultParameterMap
  3562. ### The error occurred while setting parameters
  3563. ### SQL: insert into company_domain_bind_user ( create_time ) values ( ? )
  3564. ### Cause: java.sql.SQLException: Field 'company_user_id' doesn't have a default value
  3565. ; Field 'company_user_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'company_user_id' doesn't have a default value
  3566. POST /company/companyClient | companyClient.js | msg=
  3567. ### Error updating database. Cause: java.sql.SQLException: Field 'robotic_id' doesn't have a default value
  3568. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxClientMapper.xml]
  3569. ### The error may involve defaultParameterMap
  3570. ### The error occurred while setting parameters
  3571. ### SQL: insert into company_wx_client ( create_time ) values ( ? )
  3572. ### Cause: java.sql.SQLException: Field 'robotic_id' doesn't have a default value
  3573. ; Field 'robotic_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'robotic_id' doesn't have a default value
  3574. POST /company/companyClient/addWxClient | companyClient.js | msg=
  3575. POST /company/companyConfig | companyConfig.js | msg=Request method 'POST' not supported
  3576. POST /company/companyDept | companyDept.js | msg=
  3577. POST /company/companyDomainBind | companyDomainBind.js | msg=
  3578. ### Error updating database. Cause: java.sql.SQLException: Field 'company_id' doesn't have a default value
  3579. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyDomainBindMapper.xml]
  3580. ### The error may involve defaultParameterMap
  3581. ### The error occurred while setting parameters
  3582. ### SQL: insert into company_domain_bind ( create_time ) values ( ? )
  3583. ### Cause: java.sql.SQLException: Field 'company_id' doesn't have a default value
  3584. ; Field 'company_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'company_id' doesn't have a default value
  3585. POST /company/companyDomainBind/domainBatchBinding | companyDomainBind.js | msg=绑定失败,至少有一条域名分配信息!
  3586. POST /company/companyMenu | companyMenu.js | msg=
  3587. ### Error updating database. Cause: java.sql.SQLException: Field 'menu_name' doesn't have a default value
  3588. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyMenuMapper.xml]
  3589. ### The error may involve defaultParameterMap
  3590. ### The error occurred while setting parameters
  3591. ### SQL: insert into company_menu ( create_by, create_time ) values ( ?, ? )
  3592. ### Cause: java.sql.SQLException: Field 'menu_name' doesn't have a default value
  3593. ; Field 'menu_name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'menu_name' doesn't have a default value
  3594. POST /company/companyPost | companyPost.js | msg=
  3595. ### Error updating database. Cause: java.sql.SQLException: Field 'post_code' doesn't have a default value
  3596. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyPostMapper.xml]
  3597. ### The error may involve defaultParameterMap
  3598. ### The error occurred while setting parameters
  3599. ### SQL: insert into company_post ( company_id, create_by, create_time ) values ( ?, ?, ? )
  3600. ### Cause: java.sql.SQLException: Field 'post_code' doesn't have a default value
  3601. ; Field 'post_code' doesn't have a default value; nested exception is java.sql.SQLException: Field 'post_code' doesn't have a default value
  3602. POST /company/companyProfit/audit1 | companyProfit.js | msg=Request method 'POST' not supported
  3603. POST /company/companyProfit/audit2 | companyProfit.js | msg=Request method 'POST' not supported
  3604. POST /company/companyProfit/audit3 | companyProfit.js | msg=Request method 'POST' not supported
  3605. POST /company/companyRecharge | companyRecharge.js | msg=
  3606. POST /company/companyRecharge/wxRecharge | pay.js | msg=
  3607. POST /company/companyRole | companyRole.js | msg=
  3608. ### Error updating database. Cause: java.sql.SQLException: Field 'role_name' doesn't have a default value
  3609. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyRoleMapper.xml]
  3610. ### The error may involve defaultParameterMap
  3611. ### The error occurred while setting parameters
  3612. ### SQL: insert into company_role ( company_id, create_by, create_time ) values ( ?, ?, ? )
  3613. ### Cause: java.sql.SQLException: Field 'role_name' doesn't have a default value
  3614. ; Field 'role_name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'role_name' doesn't have a default value
  3615. POST /company/companySms | companySms.js | msg=
  3616. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3617. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanySmsMapper.xml]
  3618. ### The error may involve defaultParameterMap
  3619. ### The error occurred while setting parameters
  3620. ### SQL: insert into company_sms
  3621. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3622. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3623. POST /company/companySmsTemp/audit | companySmsTemp.js | msg=Request method 'POST' not supported
  3624. POST /company/companyVoiceCaller/recover | companyVoiceCaller.js | msg=Request method 'POST' not supported
  3625. POST /company/companyVoiceDialog | companyVoiceDialog.js | msg=
  3626. POST /company/companyVoiceRobotic | companyVoiceRobotic.js | msg=当前销售暂未绑定cid服务,请联系管理员
  3627. POST /company/companyWorkflow/copy/ | companyWorkflow.js | msg=Request method 'POST' not supported
  3628. POST /company/companyWorkflow/save | companyWorkflow.js | msg=
  3629. ### Error updating database. Cause: java.sql.SQLException: Field 'workflow_name' doesn't have a default value
  3630. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWorkflowMapper.xml]
  3631. ### The error may involve defaultParameterMap
  3632. ### The error occurred while setting parameters
  3633. ### SQL: insert into company_ai_workflow ( status, version, create_time, company_user_id, company_id ) values ( ?, ?, ?, ?, ? )
  3634. ### Cause: java.sql.SQLException: Field 'workflow_name' doesn't have a default value
  3635. ; Field 'workflow_name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'workflow_name' doesn't have a default value
  3636. POST /company/companyWorkflow/updateWorkflowBindCompanyUser | companyWorkflow.js | msg=传参异常
  3637. POST /company/companyWorkflow/versionRollback/ | companyWorkflow.js | msg=Request method 'POST' not supported
  3638. POST /company/companyWx | companyAccount.js | msg=
  3639. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'wx_remark' in 'where clause'
  3640. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxAccountMapper.xml]
  3641. ### The error may involve defaultParameterMap
  3642. ### The error occurred while setting parameters
  3643. ### SQL: select * from company_wx_account where wx_remark like concat( ?, '%') limit 1
  3644. ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'wx_remark' in 'where clause'
  3645. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'wx_remark' in 'where clause'
  3646. POST /company/wxUser/addGroup | wxUser.js | msg=
  3647. POST /company/wxUser/delGroup | wxUser.js | msg=
  3648. POST /course/courseFinishTemp | courseFinishTemp.js | msg=
  3649. POST /course/courseFinishTempParent | courseFinishTempParent.js | msg=
  3650. POST /course/courseLink/createRoomLink | sopCourseLink.js | msg=课程id不能为空
  3651. POST /course/courseRedPacketLog/pageList | courseRedPacketLog.js | msg=Request method 'POST' not supported
  3652. POST /course/courseWatchLog/export | courseWatchLog.js | msg=Request method 'POST' not supported
  3653. POST /course/courseWatchLog/list | courseWatchLog.js | msg=Request method 'POST' not supported
  3654. POST /course/courseWatchLog/pageList | courseWatchLog.js | msg=Request method 'POST' not supported
  3655. POST /course/courseWatchLog/statisticsExport | courseWatchLog.js | msg=Request method 'POST' not supported
  3656. POST /course/period | period.js | msg=
  3657. POST /course/period/addCourse | userCoursePeriod.js | msg=
  3658. POST /course/period/batchRedPacket | userCoursePeriod.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.domain.FsUserCourseVideoRedPackage>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.domain.FsUserCourseVideoRedPackage>` from Object value (token `JsonToken.START_OBJECT`)
  3659. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  3660. POST /course/period/batchRedPacket/byPeriod | userCoursePeriod.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.param.FsBatchPeriodRedPackageParam>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.param.FsBatchPeriodRedPackageParam>` from Object value (token `JsonToken.START_OBJECT`)
  3661. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  3662. POST /course/period/closePeriod | userCoursePeriod.js | msg=结束营期失败:营期不存在
  3663. POST /course/period/exportInfo | userCoursePeriod.js | msg=Request method 'POST' not supported
  3664. POST /course/period/page | userCoursePeriod.js | msg=
  3665. POST /course/period/periodCount | userCoursePeriod.js | msg=
  3666. POST /course/period/updateCourseDate | userCoursePeriod.js | msg=
  3667. POST /course/period/updateCourseTime | userCoursePeriod.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'coll' evaluated to a null value.
  3668. POST /course/period/updateListCourseData | userCoursePeriod.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.domain.FsUserCoursePeriodDays>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.course.domain.FsUserCoursePeriodDays>` from Object value (token `JsonToken.START_OBJECT`)
  3669. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  3670. POST /course/playSourceConfig | coursePlaySourceConfig.js | msg=aesKey不能为空
  3671. POST /course/playSourceConfig/updateAgreementConfig | coursePlaySourceConfig.js | msg=Request method 'POST' not supported
  3672. POST /course/sop | appIdList.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'corpId' in 'class com.fs.course.domain.FsCourseSop'
  3673. POST /course/sop/export | appIdList.js | msg=Request method 'POST' not supported
  3674. POST /course/sopLogs | sopLogs.js | msg=
  3675. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3676. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseSopLogsMapper.xml]
  3677. ### The error may involve defaultParameterMap
  3678. ### The error occurred while setting parameters
  3679. ### SQL: insert into fs_course_sop_logs
  3680. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3681. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3682. POST /course/userCourse | userCourse.js | msg=Request method 'POST' not supported
  3683. POST /course/userCourse/editConfig | userCourse.js | msg=Request method 'POST' not supported
  3684. POST /course/userCourse/editRedPage | userCourse.js | msg=Request method 'POST' not supported
  3685. POST /course/userCourse/public | userCoursePublic.js | msg=Request method 'POST' not supported
  3686. POST /course/userCourse/publicPutOff/ | userCoursePublic.js | msg=Request method 'POST' not supported
  3687. POST /course/userCourse/publicPutOn/ | userCoursePublic.js | msg=Request method 'POST' not supported
  3688. POST /course/userCourse/publicUpdateIsShow | userCoursePublic.js | msg=Request method 'POST' not supported
  3689. POST /course/userCourse/pullOff/ | userCourse.js | msg=Request method 'POST' not supported
  3690. POST /course/userCourse/putOn/ | userCourse.js | msg=Request method 'POST' not supported
  3691. POST /course/userCourse/syncTemplate/ | userCourseVideo.js | msg=Request method 'POST' not supported
  3692. POST /course/userCourse/updateIsShow | userCourse.js | msg=Request method 'POST' not supported
  3693. POST /course/userCourseCategory | userCourseCategory.js | msg=
  3694. ### Error updating database. Cause: java.sql.SQLException: Field 'pid' doesn't have a default value
  3695. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserCourseCategoryMapper.xml]
  3696. ### The error may involve defaultParameterMap
  3697. ### The error occurred while setting parameters
  3698. ### SQL: insert into fs_user_course_category ( create_time ) values ( ? )
  3699. ### Cause: java.sql.SQLException: Field 'pid' doesn't have a default value
  3700. ; Field 'pid' doesn't have a default value; nested exception is java.sql.SQLException: Field 'pid' doesn't have a default value
  3701. POST /course/userCourseCategory/exportFail | userCourseCategory.js | msg=Request method 'POST' not supported
  3702. POST /course/userCourseCategory/exportFans | userCourseCategory.js | msg=Request method 'POST' not supported
  3703. POST /course/userCourseVideo/batchDown/ | userCourseVideo.js | msg=Request method 'POST' not supported
  3704. POST /course/userCourseVideo/batchEditCover | userCourseVideo.js | msg=Request method 'POST' not supported
  3705. POST /course/userCourseVideo/batchSaveVideo | userCourseVideo.js | msg=Request method 'POST' not supported
  3706. POST /course/userCourseVideo/batchUpdateRed | userCourseVideo.js | msg=Request method 'POST' not supported
  3707. POST /course/userCourseVideo/sortCourseVideo | userCourseVideo.js | msg=Request method 'POST' not supported
  3708. POST /course/userCourseVideo/updates | userCourseVideo.js | msg=Request method 'POST' not supported
  3709. POST /course/userWatchCourseStatistics | userWatchCourseStatistics.js | msg=
  3710. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3711. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserWatchCourseStatisticsMapper.xml]
  3712. ### The error may involve defaultParameterMap
  3713. ### The error occurred while setting parameters
  3714. ### SQL: insert into fs_user_watch_course_statistics
  3715. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3716. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3717. POST /course/userWatchStatistics | userWatchStatistics.js | msg=
  3718. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3719. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserWatchStatisticsMapper.xml]
  3720. ### The error may involve defaultParameterMap
  3721. ### The error occurred while setting parameters
  3722. ### SQL: insert into fs_user_watch_statistics
  3723. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3724. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3725. POST /crm/customer/add | customer.js | msg=手机号不能为空
  3726. POST /crm/customer/addCrm | customer.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "addCrm"
  3727. POST /crm/customer/addLine | customer.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "addLine"
  3728. POST /crm/customer/addMyCustomer | customer.js | msg=
  3729. POST /crm/customer/assign | customer.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "assign"
  3730. POST /crm/customer/assignCrmToCompany | customer.js | msg=Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long[]'; nested exception is java.lang.NumberFormatException: For input string: "assignCrmToCompany"
  3731. POST /crm/customer/assignToUser | customer.js | msg=
  3732. POST /crm/customer/assignUser | customer.js | msg=
  3733. POST /crm/customer/receive | customer.js | msg=
  3734. POST /crm/customer/recover | customer.js | msg=
  3735. POST /crm/customer/updateCustomerSource | customer.js | msg=操作失败
  3736. POST /crm/customerAssign/cancel | customerAssign.js | msg=
  3737. POST /crm/customerContacts | customerContacts.js | msg=
  3738. ### Error updating database. Cause: java.sql.SQLException: Field 'customer_id' doesn't have a default value
  3739. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmCustomerContactsMapper.xml]
  3740. ### The error may involve defaultParameterMap
  3741. ### The error occurred while setting parameters
  3742. ### SQL: insert into crm_customer_contacts ( create_time, company_id ) values ( ?, ? )
  3743. ### Cause: java.sql.SQLException: Field 'customer_id' doesn't have a default value
  3744. ; Field 'customer_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'customer_id' doesn't have a default value
  3745. POST /crm/customerProperty/batchAddByTemplateIds/ | customerProperty.js | msg=Request method 'POST' not supported
  3746. POST /crm/customerVisit | customerVisit.js | msg=
  3747. POST /crm/event/addCrmEvent | event.js | msg=
  3748. ### Error updating database. Cause: java.sql.SQLException: Field 'title' doesn't have a default value
  3749. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmEventMapper.xml]
  3750. ### The error may involve defaultParameterMap
  3751. ### The error occurred while setting parameters
  3752. ### SQL: insert into crm_event ( create_time, company_id, company_user_id ) values ( ?, ?, ? )
  3753. ### Cause: java.sql.SQLException: Field 'title' doesn't have a default value
  3754. ; Field 'title' doesn't have a default value; nested exception is java.sql.SQLException: Field 'title' doesn't have a default value
  3755. POST /crm/event/delCrmEvent | event.js | msg=操作失败
  3756. POST /crm/event/doEvent | event.js | msg=
  3757. POST /crm/msg/setRead | msg.js | msg=
  3758. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where msg_id = null' at line 3
  3759. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmMsgMapper.xml]
  3760. ### The error may involve defaultParameterMap
  3761. ### The error occurred while setting parameters
  3762. ### SQL: update crm_msg where msg_id = ?
  3763. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where msg_id = null' at line 3
  3764. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where msg_id = null' at line 3
  3765. POST /fastGpt/fastgptChatArtificialWords | fastgptChatArtificialWords.js | msg=文本不能为空!
  3766. POST /fastGpt/fastGptCollection | fastGptCollection.js | msg=
  3767. POST /fastGpt/fastGptCollentionData | fastGptCollentionData.js | msg=
  3768. POST /fastGpt/fastGptDataset | fastGptDataset.js | msg=
  3769. POST /fastGpt/fastgptEventLogTotal | fastgptEventLogTotal.js | msg=
  3770. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3771. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastgptEventLogTotalMapper.xml]
  3772. ### The error may involve defaultParameterMap
  3773. ### The error occurred while setting parameters
  3774. ### SQL: insert into fastgpt_event_log_total
  3775. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3776. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3777. POST /fastGpt/fastgptEventLogTotal/list | fastgptEventLogTotal.js | msg=
  3778. POST /fastGpt/fastGptRole | role.js | msg=请先配置ai权限关键字!
  3779. POST /fastGpt/fastGptRoleTag | fastGptRoleTag.js | msg=
  3780. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3781. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptRoleTagMapper.xml]
  3782. ### The error may involve defaultParameterMap
  3783. ### The error occurred while setting parameters
  3784. ### SQL: insert into fastgpt_role_tag
  3785. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3786. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3787. POST /fastGpt/fastGptUser | fastGptUser.js | msg=
  3788. ### Error updating database. Cause: java.sql.SQLException: Field 'uid' doesn't have a default value
  3789. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptUserMapper.xml]
  3790. ### The error may involve defaultParameterMap
  3791. ### The error occurred while setting parameters
  3792. ### SQL: insert into fastgpt_user ( create_time ) values ( ? )
  3793. ### Cause: java.sql.SQLException: Field 'uid' doesn't have a default value
  3794. ; Field 'uid' doesn't have a default value; nested exception is java.sql.SQLException: Field 'uid' doesn't have a default value
  3795. POST /his/FsFollowReport | FsFollowReport.js | msg=
  3796. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3797. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsFollowReportMapper.xml]
  3798. ### The error may involve defaultParameterMap
  3799. ### The error occurred while setting parameters
  3800. ### SQL: insert into fs_follow_report
  3801. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3802. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3803. POST /his/integralGoods | integralGoods.js | msg=
  3804. ### Error updating database. Cause: java.sql.SQLException: Field 'img_url' doesn't have a default value
  3805. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsIntegralGoodsMapper.xml]
  3806. ### The error may involve defaultParameterMap
  3807. ### The error occurred while setting parameters
  3808. ### SQL: insert into fs_integral_goods ( create_time ) values ( ? )
  3809. ### Cause: java.sql.SQLException: Field 'img_url' doesn't have a default value
  3810. ; Field 'img_url' doesn't have a default value; nested exception is java.sql.SQLException: Field 'img_url' doesn't have a default value
  3811. POST /his/integralOrder | integralOrder.js | msg=用户不存在
  3812. POST /his/integralOrder/batchCreateErpOrder | integralOrder.js | msg=Request method 'POST' not supported
  3813. POST /his/integralOrder/batchSetErpOrder | integralOrder.js | msg=Request method 'POST' not supported
  3814. POST /his/storeOrder/list | storeOrder.js | msg=Request method 'POST' not supported
  3815. POST /knowledge/audit/batch | knowledge.js | msg=请选择要审核的数据
  3816. POST /knowledge/base | knowledge.js | msg=Required request header 'tenant-code' for method parameter type String is not present
  3817. POST /live/config | liveQuestionLive.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  3818. POST /live/coupon | liveCoupon.js | msg=
  3819. ### Error updating database. Cause: java.sql.SQLException: Field 'title' doesn't have a default value
  3820. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveCouponMapper.xml]
  3821. ### The error may involve defaultParameterMap
  3822. ### The error occurred while setting parameters
  3823. ### SQL: insert into live_coupon ( create_time ) values ( ? )
  3824. ### Cause: java.sql.SQLException: Field 'title' doesn't have a default value
  3825. ; Field 'title' doesn't have a default value; nested exception is java.sql.SQLException: Field 'title' doesn't have a default value
  3826. POST /live/coupon/addLiveCoupon | liveCoupon.js | msg=null
  3827. POST /live/coupon/delLiveCoupon | liveCoupon.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'listVo.couponIds' evaluated to a null value.
  3828. POST /live/coupon/handleDeleteSelected | liveCoupon.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'listVo.couponIds' evaluated to a null value.
  3829. POST /live/coupon/handleIsShowChange | liveCoupon.js | msg=null
  3830. POST /live/coupon/issue | liveCouponIssue.js | msg=Request method 'POST' not supported
  3831. POST /live/coupon/publish | liveCoupon.js | msg=
  3832. POST /live/coupon/updateLiveCouponBind | liveCoupon.js | msg=
  3833. POST /live/coupon/user | liveCouponUser.js | msg=Request method 'POST' not supported
  3834. POST /live/gift | gift.js | msg=
  3835. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3836. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveGiftMapper.xml]
  3837. ### The error may involve defaultParameterMap
  3838. ### The error occurred while setting parameters
  3839. ### SQL: insert into live_gift
  3840. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3841. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3842. POST /live/live/clearCache/ | live.js | msg=Request method 'POST' not supported
  3843. POST /live/live/updateLiveIsAudit | live.js | msg=Request method 'POST' not supported
  3844. POST /live/live/verifyIdInfo | live.js | msg=身份证信息缺失
  3845. POST /live/liveAfterSales/audit | liveAfterSales.js | msg=Request method 'POST' not supported
  3846. POST /live/liveAfterSales/audit1 | liveAfterSales.js | msg=Request method 'POST' not supported
  3847. POST /live/liveAfterSales/audit2 | liveAfterSales.js | msg=Request method 'POST' not supported
  3848. POST /live/liveAfterSales/cancel | liveAfterSales.js | msg=Request method 'POST' not supported
  3849. POST /live/liveAfterSales/handleImmediatelyRefund | liveAfterSales.js | msg=Request method 'POST' not supported
  3850. POST /live/liveAfterSales/refund | liveAfterSales.js | msg=Request method 'POST' not supported
  3851. POST /live/liveGoods | liveGoods.js | msg=null
  3852. POST /live/liveGoods/handleDeleteSelected | liveGoods.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'listVo.goodsIds' evaluated to a null value.
  3853. POST /live/liveGoods/handleIsShowChange | liveGoods.js | msg=
  3854. POST /live/liveGoods/handleShelfOrUn | liveGoods.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'listVo.goodsIds' evaluated to a null value.
  3855. POST /live/liveLotteryConf | liveLotteryConf.js | msg=
  3856. ### Error updating database. Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3857. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryConfMapper.xml]
  3858. ### The error may involve defaultParameterMap
  3859. ### The error occurred while setting parameters
  3860. ### SQL: insert into live_lottery_conf ( create_time, lottery_status ) values ( ?, ? )
  3861. ### Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3862. ; Field 'live_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'live_id' doesn't have a default value
  3863. POST /live/liveLotteryConf/product | liveLotteryProductConf.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'prizes' evaluated to a null value.
  3864. POST /live/liveLotteryRecord | liveLotteryRecord.js | msg=
  3865. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3866. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRecordMapper.xml]
  3867. ### The error may involve defaultParameterMap
  3868. ### The error occurred while setting parameters
  3869. ### SQL: insert into live_lottery_record ( create_time ) values ( ? )
  3870. ### Cause: java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3871. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.live_lottery_record' doesn't exist
  3872. POST /live/liveLotteryRegistration | liveLotteryRegistration.js | msg=
  3873. ### Error updating database. Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3874. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRegistrationMapper.xml]
  3875. ### The error may involve defaultParameterMap
  3876. ### The error occurred while setting parameters
  3877. ### SQL: insert into live_lottery_registration ( create_time ) values ( ? )
  3878. ### Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3879. ; Field 'live_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'live_id' doesn't have a default value
  3880. POST /live/liveOrder/addTuiMoney | liveOrder.js | msg=Request method 'POST' not supported
  3881. POST /live/liveOrder/auditPayRemain | liveOrder.js | msg=Request method 'POST' not supported
  3882. POST /live/liveOrder/bindCustomer | liveOrder.js | msg=
  3883. POST /live/liveOrder/editTuiMoney | liveOrder.js | msg=Request method 'POST' not supported
  3884. POST /live/liveOrder/finishOrder | liveOrder.js | msg=Request method 'POST' not supported
  3885. POST /live/liveOrder/getExpressByDeliverId | liveOrder.js | msg=未查询到订单信息
  3886. POST /live/liveOrder/refundOrderMoney | liveOrder.js | msg=Request method 'POST' not supported
  3887. POST /live/liveOrder/syncExpress | liveOrder.js | msg=Request method 'POST' not supported
  3888. POST /live/liveOrder/updateErpOrder | liveOrder.js | msg=Request method 'POST' not supported
  3889. POST /live/liveOrder/updateExpress | liveOrder.js | msg=Request method 'POST' not supported
  3890. POST /live/liveOrderItem | liveOrderitems.js | msg=
  3891. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3892. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveOrderItemMapper.xml]
  3893. ### The error may involve defaultParameterMap
  3894. ### The error occurred while setting parameters
  3895. ### SQL: insert into live_order_item
  3896. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3897. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3898. POST /live/liveOrderLogs | liveOrderLogs.js | msg=
  3899. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3900. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveOrderLogsMapper.xml]
  3901. ### The error may involve defaultParameterMap
  3902. ### The error occurred while setting parameters
  3903. ### SQL: insert into live_order_logs
  3904. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3905. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3906. POST /live/liveRedConf | liveRedConf.js | msg=
  3907. ### Error updating database. Cause: java.sql.SQLException: Field 'duration' doesn't have a default value
  3908. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveRedConfMapper.xml]
  3909. ### The error may involve defaultParameterMap
  3910. ### The error occurred while setting parameters
  3911. ### SQL: insert into live_red_conf ( create_time ) values ( ? )
  3912. ### Cause: java.sql.SQLException: Field 'duration' doesn't have a default value
  3913. ; Field 'duration' doesn't have a default value; nested exception is java.sql.SQLException: Field 'duration' doesn't have a default value
  3914. POST /live/liveUserLotteryRecord | liveUserLotteryRecord.js | msg=
  3915. ### Error updating database. Cause: java.sql.SQLException: Field 'lottery_id' doesn't have a default value
  3916. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveUserLotteryRecordMapper.xml]
  3917. ### The error may involve defaultParameterMap
  3918. ### The error occurred while setting parameters
  3919. ### SQL: insert into live_user_lottery_record ( create_time ) values ( ? )
  3920. ### Cause: java.sql.SQLException: Field 'lottery_id' doesn't have a default value
  3921. ; Field 'lottery_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'lottery_id' doesn't have a default value
  3922. POST /live/liveVideo | liveVideo.js | msg=
  3923. POST /live/record | record.js | msg=
  3924. ### Error updating database. Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3925. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveRewardRecordMapper.xml]
  3926. ### The error may involve defaultParameterMap
  3927. ### The error occurred while setting parameters
  3928. ### SQL: insert into live_reward_record ( create_time ) values ( ? )
  3929. ### Cause: java.sql.SQLException: Field 'live_id' doesn't have a default value
  3930. ; Field 'live_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'live_id' doesn't have a default value
  3931. POST /live/record/statistics | liveRewardRecord.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'step' evaluated to a null value.
  3932. POST /live/task | task.js | msg=直播间不存在
  3933. POST /live/words | words.js | msg=
  3934. ### Error updating database. Cause: java.sql.SQLException: Field 'word' doesn't have a default value
  3935. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveSensitiveWordsMapper.xml]
  3936. ### The error may involve defaultParameterMap
  3937. ### The error occurred while setting parameters
  3938. ### SQL: insert into live_sensitive_words ( create_time ) values ( ? )
  3939. ### Cause: java.sql.SQLException: Field 'word' doesn't have a default value
  3940. ; Field 'word' doesn't have a default value; nested exception is java.sql.SQLException: Field 'word' doesn't have a default value
  3941. POST /liveData/liveData/listLiveData | liveData.js | msg=
  3942. POST /monitor/job | job.js | msg=cronExpression cannot be null
  3943. POST /qw/appContactWay/updateIsShow | appContactWay.js | msg=Request method 'POST' not supported
  3944. POST /qw/autoTagsLogs | autoTagsLogs.js | msg=
  3945. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3946. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwAutoTagsLogsMapper.xml]
  3947. ### The error may involve defaultParameterMap
  3948. ### The error occurred while setting parameters
  3949. ### SQL: insert into qw_auto_tags_logs
  3950. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3951. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3952. POST /qw/contactWay | contactWay.js | msg=新增企微活码失败: null
  3953. POST /qw/contactWayLogs | contactWayLogs.js | msg=
  3954. ### Error updating database. Cause: java.sql.SQLException: Field 'user_id' doesn't have a default value
  3955. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwContactWayLogsMapper.xml]
  3956. ### The error may involve defaultParameterMap
  3957. ### The error occurred while setting parameters
  3958. ### SQL: insert into qw_contact_way_logs ( create_time ) values ( ? )
  3959. ### Cause: java.sql.SQLException: Field 'user_id' doesn't have a default value
  3960. ; Field 'user_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'user_id' doesn't have a default value
  3961. POST /qw/course/courseWatchLog/statisticsExport | courseWatchLog.js | msg=Request method 'POST' not supported
  3962. POST /qw/drainageLink | drainageLink.js | msg=
  3963. POST /qw/drainageLinkLogs | drainageLinkLogs.js | msg=
  3964. ### Error updating database. Cause: java.sql.SQLException: Field 'user_id' doesn't have a default value
  3965. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwDrainageLinkLogsMapper.xml]
  3966. ### The error may involve defaultParameterMap
  3967. ### The error occurred while setting parameters
  3968. ### SQL: insert into qw_drainage_link_logs ( create_time ) values ( ? )
  3969. ### Cause: java.sql.SQLException: Field 'user_id' doesn't have a default value
  3970. ; Field 'user_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'user_id' doesn't have a default value
  3971. POST /qw/externalContact | externalContact.js | msg=
  3972. POST /qw/externalContact/addTag | externalContact.js | msg=修改用户为空
  3973. POST /qw/externalContact/addTagByWatch | externalContact.js | msg=批量查询用户数据失败:nested exception is org.apache.ibatis.builder.BuilderException: The expression 'logIds' evaluated to a null value.
  3974. POST /qw/externalContact/batchUpdateExternalContactNotes | externalContact.js | msg=修改用户为空
  3975. POST /qw/externalContact/delTag | externalContact.js | msg=批量查询用户数据失败:nested exception is org.apache.ibatis.builder.BuilderException: The expression 'ids' evaluated to a null value.
  3976. POST /qw/externalContact/delTagByWatch | externalContact.js | msg=批量查询用户数据失败:nested exception is org.apache.ibatis.builder.BuilderException: The expression 'logIds' evaluated to a null value.
  3977. POST /qw/externalContact/expectQwGroupMsgCountCustomer | externalContact.js | msg=nested exception is org.apache.ibatis.builder.BuilderException: The expression 'map.userIdsSelectList' evaluated to a null value.
  3978. POST /qw/externalContact/qwRepeatData | fsUser.js | msg=Request method 'POST' not supported
  3979. POST /qw/friendCircleTask | friendCircleTask.js | msg=
  3980. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3981. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleTaskMapper.xml]
  3982. ### The error may involve defaultParameterMap
  3983. ### The error occurred while setting parameters
  3984. ### SQL: insert into qw_friend_circle_task
  3985. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3986. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3987. POST /qw/friendComments | friendComments.js | msg=
  3988. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3989. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCommentsMapper.xml]
  3990. ### The error may involve defaultParameterMap
  3991. ### The error occurred while setting parameters
  3992. ### SQL: insert into qw_friend_comments
  3993. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3994. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3995. POST /qw/friendCustomerList | friendCustomerList.js | msg=
  3996. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  3997. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCustomerListMapper.xml]
  3998. ### The error may involve defaultParameterMap
  3999. ### The error occurred while setting parameters
  4000. ### SQL: insert into qw_friend_customer_list
  4001. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4002. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4003. POST /qw/friendWelcomeItem | friendWelcomeItem.js | msg=
  4004. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4005. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendWelcomeItemMapper.xml]
  4006. ### The error may involve defaultParameterMap
  4007. ### The error occurred while setting parameters
  4008. ### SQL: insert into qw_friend_welcome_item
  4009. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4010. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4011. POST /qw/groupChatTransfer/transfer | groupChatTransfer.js | msg=接替企微用户不能为空
  4012. POST /qw/groupChatTransfer/transferOnJob | groupChatTransfer.js | msg=接替企微用户不能为空
  4013. POST /qw/groupMsg | groupMsg.js | msg=新增客户群发记录失败: null
  4014. POST /qw/groupMsgUser | groupMsgUser.js | msg=
  4015. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4016. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwGroupMsgUserMapper.xml]
  4017. ### The error may involve defaultParameterMap
  4018. ### The error occurred while setting parameters
  4019. ### SQL: insert into qw_group_msg_user
  4020. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4021. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4022. POST /qw/groupMsgUser/refreshResultsGroupMsgUser | groupMsgUser.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.QwGroupMsgDetailsVO>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.QwGroupMsgDetailsVO>` from Object value (token `JsonToken.START_OBJECT`)
  4023. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4024. POST /qw/groupMsgUser/refreshResultsMsgUser | groupMsgUser.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.QwGroupMsgDetailsVO>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.QwGroupMsgDetailsVO>` from Object value (token `JsonToken.START_OBJECT`)
  4025. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4026. POST /qw/luckyBag/add | luckyBag.js | msg=
  4027. ### Error updating database. Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4028. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/LuckyBagMapper.xml]
  4029. ### The error may involve defaultParameterMap
  4030. ### The error occurred while setting parameters
  4031. ### SQL: insert into lucky_bag ( create_id, update_id, create_time, update_time, create_name, company_id ) values ( ?, ?, ?, ?, ?, ? )
  4032. ### Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4033. ; Field 'name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'name' doesn't have a default value
  4034. POST /qw/luckyBagCollectRecord | luckyBagCollectRecord.js | msg=
  4035. ### Error updating database. Cause: java.sql.SQLException: Field 'lucky_bag_id' doesn't have a default value
  4036. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/LuckyBagCollectRecordMapper.xml]
  4037. ### The error may involve defaultParameterMap
  4038. ### The error occurred while setting parameters
  4039. ### SQL: insert into lucky_bag_collect_record ( create_time ) values ( ? )
  4040. ### Cause: java.sql.SQLException: Field 'lucky_bag_id' doesn't have a default value
  4041. ; Field 'lucky_bag_id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'lucky_bag_id' doesn't have a default value
  4042. POST /qw/qwMsg/sendMsg | im.js | msg=
  4043. POST /qw/qwPushCount/tokenList | fastGptPushTokenTotal.js | msg=Request method 'POST' not supported
  4044. POST /qw/qwUserVoiceLog/newList | qwUserVoiceLog.js | msg=
  4045. POST /qw/sop | sop.js | msg=
  4046. POST /qw/sop/export | sop.js | msg=Request method 'POST' not supported
  4047. POST /qw/sop/list | sop.js | msg=Request method 'POST' not supported
  4048. POST /qw/sop/updateAutoSopTime | sop.js | msg=操作失败
  4049. POST /qw/sop/updateSopQwUser | sop.js | msg=无此任务
  4050. POST /qw/sop/updateSopStatus | sop.js | msg=
  4051. POST /qw/sopTemp/add | sopTemp.js | msg=
  4052. POST /qw/sopTemp/addOrUpdateSetting | sopTemp.js | msg=
  4053. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4054. ### The error may exist in com/fs/sop/mapper/QwSopTempDayMapper.java (best guess)
  4055. ### The error may involve com.fs.sop.mapper.QwSopTempDayMapper.insert-Inline
  4056. ### The error occurred while setting parameters
  4057. ### SQL: INSERT INTO qw_sop_temp_day VALUES
  4058. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4059. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4060. POST /qw/sopTemp/export | sopTemp.js | msg=Request method 'POST' not supported
  4061. POST /qw/sopTemp/shareTemp | sopTemp.js | msg=
  4062. POST /qw/sopTemp/sortDay | sopTemp.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.SortDayVo>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.vo.SortDayVo>` from Object value (token `JsonToken.START_OBJECT`)
  4063. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4064. POST /qw/sopTemp/update | sopTemp.js | msg=
  4065. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4066. ### The error may exist in com/fs/sop/mapper/QwSopTempMapper.java (best guess)
  4067. ### The error may involve com.fs.sop.mapper.QwSopTempMapper.updateById-Inline
  4068. ### The error occurred while setting parameters
  4069. ### SQL: UPDATE qw_sop_temp WHERE id=?
  4070. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4071. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4072. POST /qw/sopTemp/updateRedPackage | sopTemp.js | msg=
  4073. POST /qw/statistic | groupChatStatistic.js | msg=
  4074. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4075. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwGroupchatStatisticMapper.xml]
  4076. ### The error may involve defaultParameterMap
  4077. ### The error occurred while setting parameters
  4078. ### SQL: insert into qw_groupchat_statistic
  4079. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4080. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4081. POST /qw/tagGroup | tagGroup.js | msg=未知异常,请联系管理员
  4082. POST /qw/tagGroup/syncTag/ | tagGroup.js | msg=Request method 'POST' not supported
  4083. POST /qw/user | user.js | msg=Request method 'POST' not supported
  4084. POST /qw/user/allocateRemoteHost | user.js | msg=Request method 'POST' not supported
  4085. POST /qw/user/delQwIpad | user.js | msg=
  4086. POST /qw/user/getQwIpad | user.js | msg=
  4087. POST /qw/user/handleInputAuthAppKey | user.js | msg=
  4088. POST /qw/user/loginQwCode | user.js | msg=
  4089. POST /qw/user/loginQwCodeMsg | user.js | msg=
  4090. POST /qw/user/loginQwCodeUrl | user.js | msg=
  4091. POST /qw/user/loginQwIpad | user.js | msg=
  4092. POST /qw/user/logoutQwLogout | user.js | msg=
  4093. POST /qw/user/outLoginQwIpad | user.js | msg=
  4094. POST /qw/user/qrCodeStatus | user.js | msg=未获取到Uid
  4095. POST /qw/user/qrCodeVerify | user.js | msg=初始化错误请重新登录
  4096. POST /qw/user/qwCompanyList | qwUser.js | msg=Request method 'POST' not supported
  4097. POST /qw/user/selectCloudAP | user.js | msg=Illegal base64 character 3f
  4098. POST /qw/user/sync/ | user.js | msg=Request method 'POST' not supported
  4099. POST /qw/user/syncName/ | user.js | msg=Request method 'POST' not supported
  4100. POST /qw/user/twoCode | user.js | msg=
  4101. POST /qw/user/twoCodeStatus | user.js | msg=未获取到Uid
  4102. POST /qw/user/updateIsAuto | user.js | msg=
  4103. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4104. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserMapper.xml]
  4105. ### The error may involve defaultParameterMap
  4106. ### The error occurred while setting parameters
  4107. ### SQL: update qw_user where id = ?
  4108. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4109. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4110. POST /qw/user/updateSendType | user.js | msg=修改人不能为空
  4111. POST /qw/user/weclomeQwUser | user.js | msg=
  4112. POST /qw/userBehaviorData | userBehaviorData.js | msg=
  4113. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4114. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserbehaviorDataMapper.xml]
  4115. ### The error may involve defaultParameterMap
  4116. ### The error occurred while setting parameters
  4117. ### SQL: insert into qw_userbehavior_data
  4118. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4119. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4120. POST /qw/userVideo | userVideo.js | msg=
  4121. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4122. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserVideoMapper.xml]
  4123. ### The error may involve defaultParameterMap
  4124. ### The error occurred while setting parameters
  4125. ### SQL: insert into qw_user_video
  4126. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4127. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4128. POST /qw/welcome | welcome.js | msg=未知异常,请联系管理员
  4129. POST /qwAssignRule/addOrUpdate | assignRule.js | msg=
  4130. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4131. ### The error may exist in com/fs/qw/mapper/QwAssignRuleMapper.java (best guess)
  4132. ### The error may involve com.fs.qw.mapper.QwAssignRuleMapper.insert-Inline
  4133. ### The error occurred while setting parameters
  4134. ### SQL: INSERT INTO qw_assign_rule VALUES
  4135. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4136. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4137. POST /qwAssignRule/enable/ | assignRule.js | msg=Request method 'POST' not supported
  4138. POST /qwCustomerLink/channel/create | customerLink.js | msg=
  4139. POST /qwCustomerLink/createOrUpdate | customerLink.js | msg=
  4140. POST /qwCustomerLink/delete/ | customerLink.js | msg=Request method 'POST' not supported
  4141. POST /qwGroupActual/addOrUpdate | groupActual.js | msg=
  4142. POST /qwGroupLiveCode/addOrUpdate | groupLiveCode.js | msg=
  4143. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4144. ### The error may exist in com/fs/qw/mapper/QwGroupLiveCodeMapper.java (best guess)
  4145. ### The error may involve com.fs.qw.mapper.QwGroupLiveCodeMapper.insert-Inline
  4146. ### The error occurred while setting parameters
  4147. ### SQL: INSERT INTO qw_group_live_code VALUES
  4148. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4149. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4150. POST /qwSop/sopUserLogsInfo/sendUserLogsInfoMsg | sopUserLogsInfo.js | msg=课程默认配置为空,请联系管理员
  4151. POST /store/city | city.js | msg=
  4152. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4153. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsCityMapper.xml]
  4154. ### The error may involve defaultParameterMap
  4155. ### The error occurred while setting parameters
  4156. ### SQL: insert into fs_city
  4157. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4158. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4159. POST /store/healthRecord | healthRecord.js | msg=Request method 'POST' not supported
  4160. POST /store/inquiryOrder | inquiryOrder.js | msg=
  4161. POST /store/inquiryOrder/cancelOrder | inquiryOrder.js | msg=
  4162. POST /store/inquiryOrder/writeRemark | inquiryOrder.js | msg=
  4163. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4164. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsInquiryOrderMapper.xml]
  4165. ### The error may involve defaultParameterMap
  4166. ### The error occurred while setting parameters
  4167. ### SQL: update fs_inquiry_order where order_id = ?
  4168. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4169. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4170. POST /store/inquiryOrderReport | inquiryOrderReport.js | msg=
  4171. POST /store/material | material.js | msg=
  4172. ### Error updating database. Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4173. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsMaterialMapper.xml]
  4174. ### The error may involve defaultParameterMap
  4175. ### The error occurred while setting parameters
  4176. ### SQL: insert into fs_material ( store_id, create_time ) values ( ?, ? )
  4177. ### Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4178. ; Field 'name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'name' doesn't have a default value
  4179. POST /store/materialGroup | materialGroup.js | msg=
  4180. ### Error updating database. Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4181. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsMaterialGroupMapper.xml]
  4182. ### The error may involve defaultParameterMap
  4183. ### The error occurred while setting parameters
  4184. ### SQL: insert into fs_material_group ( create_time, store_id ) values ( ?, ? )
  4185. ### Cause: java.sql.SQLException: Field 'name' doesn't have a default value
  4186. ; Field 'name' doesn't have a default value; nested exception is java.sql.SQLException: Field 'name' doesn't have a default value
  4187. POST /store/packageOrder | packageOrder.js | msg=请提交患者信息
  4188. POST /store/store/menu | menu.js | msg=Request method 'POST' not supported
  4189. POST /store/store/prescribe | prescribe.js | msg=Request method 'POST' not supported
  4190. POST /store/store/prescribeDrug | prescribeDrug.js | msg=Request method 'POST' not supported
  4191. POST /store/store/shippingTemplates | shippingTemplates.js | msg=Request method 'POST' not supported
  4192. POST /store/store/storeAfterSales | storeAfterSales.js | msg=Request method 'POST' not supported
  4193. POST /store/store/storeAfterSales/audit1 | storeAfterSales.js | msg=Request method 'POST' not supported
  4194. POST /store/store/storeAfterSales/audit2 | storeAfterSales.js | msg=Request method 'POST' not supported
  4195. POST /store/store/storeAfterSales/cancel | storeAfterSales.js | msg=Request method 'POST' not supported
  4196. POST /store/store/storeAfterSales/refund | storeAfterSales.js | msg=Request method 'POST' not supported
  4197. POST /store/store/storeAfterSalesItem | storeAfterSalesItem.js | msg=Request method 'POST' not supported
  4198. POST /store/store/storeAfterSalesStatus | storeAfterSalesStatus.js | msg=Request method 'POST' not supported
  4199. POST /store/store/storeCart | storeCart.js | msg=Request method 'POST' not supported
  4200. POST /store/store/storeOrder | storeOrder.js | msg=
  4201. ### Error updating database. Cause: java.sql.SQLException: Field 'order_code' doesn't have a default value
  4202. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/hisStore/FsStoreOrderScrmMapper.xml]
  4203. ### The error may involve defaultParameterMap
  4204. ### The error occurred while setting parameters
  4205. ### SQL: insert into fs_store_order_scrm ( create_time ) values ( ? )
  4206. ### Cause: java.sql.SQLException: Field 'order_code' doesn't have a default value
  4207. ; Field 'order_code' doesn't have a default value; nested exception is java.sql.SQLException: Field 'order_code' doesn't have a default value
  4208. POST /store/store/storeOrder/addTuiMoney | storeOrder.js | msg=Request method 'POST' not supported
  4209. POST /store/store/storeOrder/auditPayRemain | storeOrder.js | msg=Request method 'POST' not supported
  4210. POST /store/store/storeOrder/batchAudit | storeOrder.js | msg=订单ID列表不能为空
  4211. POST /store/store/storeOrder/batchCreateErpOrder | storeOrder.js | msg=Request method 'POST' not supported
  4212. POST /store/store/storeOrder/batchSetErpOrder | storeOrder.js | msg=Request method 'POST' not supported
  4213. POST /store/store/storeOrder/createUserOrder | storeOrder.js | msg=地址不能为空
  4214. POST /store/store/storeOrder/editErpPhone | storeOrder.js | msg=Request method 'POST' not supported
  4215. POST /store/store/storeOrder/editTuiMoney | storeOrder.js | msg=Request method 'POST' not supported
  4216. POST /store/store/storeOrder/export | storeOrder.js | msg=Request method 'POST' not supported
  4217. POST /store/store/storeOrder/exportDetails | storeOrder.js | msg=Request method 'POST' not supported
  4218. POST /store/store/storeOrder/finishOrder | storeOrder.js | msg=
  4219. POST /store/store/storeOrder/healthExport | storeOrder.js | msg=Request method 'POST' not supported
  4220. POST /store/store/storeOrder/healthExportDetails | storeOrder.js | msg=Request method 'POST' not supported
  4221. POST /store/store/storeOrder/healthList | storeOrder.js | msg=Request method 'POST' not supported
  4222. POST /store/store/storeOrder/list | storeOrder.js | msg=Request method 'POST' not supported
  4223. POST /store/store/storeOrder/refundOrderMoney | storeOrder.js | msg=Request method 'POST' not supported
  4224. POST /store/store/storeOrder/remark | storeOrder.js | msg=Request method 'POST' not supported
  4225. POST /store/store/storeOrder/saveErpPhone | storeOrder.js | msg=Request method 'POST' not supported
  4226. POST /store/store/storeOrder/syncExpress | storeOrder.js | msg=Request method 'POST' not supported
  4227. POST /store/store/storeOrder/updateErpOrder | storeOrder.js | msg=Request method 'POST' not supported
  4228. POST /store/store/storeOrder/updateExpress | storeOrder.js | msg=Request method 'POST' not supported
  4229. POST /store/store/storeOrderAudit/audit | storeOrderAudit.js | msg=记录ID不能为空
  4230. POST /store/store/storeOrderItem | storeOrderItem.js | msg=Request method 'POST' not supported
  4231. POST /store/store/storeOrderNotice | storeOrderNotice.js | msg=Request method 'POST' not supported
  4232. POST /store/store/storeOrderOffline | storeOrderOffline.js | msg=Request method 'POST' not supported
  4233. POST /store/store/storeOrderOffline/auditOrder/ | storeOrderOffline.js | msg=Request method 'POST' not supported
  4234. POST /store/store/storeOrderStatus | storeOrderStatus.js | msg=Request method 'POST' not supported
  4235. POST /store/store/storePayment/oneClickShipping | storePayment.js | msg=Request method 'POST' not supported
  4236. POST /store/store/storePayment/refundStorePayment | storePayment.js | msg=Request method 'POST' not supported
  4237. POST /store/store/storePayment/returnPayStatus | storePayment.js | msg=Request method 'POST' not supported
  4238. POST /store/store/storeProduct/addOrEdit | storeProduct.js | msg=Request method 'POST' not supported
  4239. POST /store/store/storeProduct/batchAudit | storeProduct.js | msg=Request method 'POST' not supported
  4240. POST /store/store/storeProduct/batchModify | storeProduct.js | msg=Request method 'POST' not supported
  4241. POST /store/store/storeProduct/genFormatAttr/ | storeProduct.js | msg=Request method 'POST' not supported
  4242. POST /store/store/storeProductAttr | storeProductAttr.js | msg=Request method 'POST' not supported
  4243. POST /store/store/storeProductAttrValue | storeProductAttrValue.js | msg=Request method 'POST' not supported
  4244. POST /store/store/storeProductCategory | storeProductCategory.js | msg=Request method 'POST' not supported
  4245. POST /store/store/storeProductDetails | storeProductDetails.js | msg=Request method 'POST' not supported
  4246. POST /store/store/storeProductGroup | storeProductGroup.js | msg=Request method 'POST' not supported
  4247. POST /store/store/storeProductPackage | storeProductPackage.js | msg=
  4248. POST /store/store/storeProductPackage/modifyMore | storeProductPackage.js | msg=Request method 'POST' not supported
  4249. POST /store/store/storeProductRelation | storeProductRelation.js | msg=Request method 'POST' not supported
  4250. POST /store/store/storeProductReply | storeProductReply.js | msg=Request method 'POST' not supported
  4251. POST /store/store/storeProductRule | storeProductRule.js | msg=Request method 'POST' not supported
  4252. POST /store/store/storeProductTemplate | storeProductTemplate.js | msg=Request method 'POST' not supported
  4253. POST /store/store/storeProductYuyue | storeProductYuyue.js | msg=Request method 'POST' not supported
  4254. POST /store/store/storeShop | storeShop.js | msg=Request method 'POST' not supported
  4255. POST /store/store/storeShopStaff | storeShopStaff.js | msg=Request method 'POST' not supported
  4256. POST /store/store/storeVisit | storeVisit.js | msg=Request method 'POST' not supported
  4257. POST /store/store/user | user.js | msg=Request method 'POST' not supported
  4258. POST /store/store/userAddress | userAddress.js | msg=Request method 'POST' not supported
  4259. POST /store/storeOrder | storeOrder.js | msg=
  4260. ### Error updating database. Cause: java.sql.SQLException: Field 'order_code' doesn't have a default value
  4261. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsStoreOrderMapper.xml]
  4262. ### The error may involve defaultParameterMap
  4263. ### The error occurred while setting parameters
  4264. ### SQL: insert into fs_store_order ( create_time ) values ( ? )
  4265. ### Cause: java.sql.SQLException: Field 'order_code' doesn't have a default value
  4266. ; Field 'order_code' doesn't have a default value; nested exception is java.sql.SQLException: Field 'order_code' doesn't have a default value
  4267. POST /store/storeOrder/addTuiMoney | storeOrder.js | msg=Request method 'POST' not supported
  4268. POST /store/storeOrder/auditPayRemain | storeOrder.js | msg=Request method 'POST' not supported
  4269. POST /store/storeOrder/createUserOrder | storeOrder.js | msg=Request method 'POST' not supported
  4270. POST /store/storeOrder/editTuiMoney | storeOrder.js | msg=Request method 'POST' not supported
  4271. POST /store/storeOrder/finishOrder | storeOrder.js | msg=Request method 'POST' not supported
  4272. POST /store/storeOrder/refundOrderMoney | storeOrder.js | msg=Request method 'POST' not supported
  4273. POST /store/storeOrder/syncExpress | storeOrder.js | msg=Request method 'POST' not supported
  4274. POST /store/storeOrder/updateErpOrder | storeOrder.js | msg=Request method 'POST' not supported
  4275. POST /store/storeOrder/updateExpress | storeOrder.js | msg=Request method 'POST' not supported
  4276. POST /store/storeProductPackage | storeProductPackage.js | msg=
  4277. POST /store/user/enabledBlackUsers | user.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.dto.UserProjectDTO>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.dto.UserProjectDTO>` from Object value (token `JsonToken.START_OBJECT`)
  4278. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4279. POST /store/user/enabledUsers | user.js | msg=JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.dto.UserProjectDTO>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.fs.qw.dto.UserProjectDTO>` from Object value (token `JsonToken.START_OBJECT`)
  4280. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4281. POST /store/userAddress | userAddress.js | msg=
  4282. POST /store/userCoupon/sendCoupon | userCoupon.js | msg=用户不能为空
  4283. POST /store/userOnlineState | userOnlineState.js | msg=
  4284. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4
  4285. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsUserOnlineStateMapper.xml]
  4286. ### The error may involve defaultParameterMap
  4287. ### The error occurred while setting parameters
  4288. ### SQL: insert into fs_user_online_state ( create_time ) values ( ? ) on duplicate key update
  4289. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4
  4290. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4
  4291. POST /system/approval | approval.js | msg=
  4292. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4293. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/CustomerTransferApprovalMapper.xml]
  4294. ### The error may involve defaultParameterMap
  4295. ### The error occurred while setting parameters
  4296. ### SQL: insert into customer_transfer_approval
  4297. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4298. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  4299. POST /system/approval/export | approval.js | msg=Request method 'POST' not supported
  4300. POST /tool/gen/importTable | gen.js | msg=
  4301. POST /user/fsUser | fsUser.js | msg=Request method 'POST' not supported
  4302. POST /user/fsUser/auditUser | fsUser.js | msg=JSON parse error: Cannot deserialize value of type `[Ljava.lang.String;` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `[Ljava.lang.String;` from Object value (token `JsonToken.START_OBJECT`)
  4303. at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]
  4304. POST /user/fsUser/batchSendCourse | fsUser.js | msg=
  4305. POST /user/fsUser/export | fsUser.js | msg=Request method 'POST' not supported
  4306. POST /user/fsUser/myList | fsUser.js | msg=当前销售不存在!
  4307. POST /workflow/lobster/api-registry | lobster.js | msg=apiKey和apiName不能为空
  4308. POST /workflow/lobster/optimization/batch-audit | lobster.js | msg=
  4309. POST /workflow/lobster/optimization/config | lobster.js | msg=
  4310. POST /workflow/lobster/prompt | lobster.js | msg=提示词内容不能为空
  4311. POST /workflow/lobster/sales-corpus/analyze | lobster.js | msg=PreparedStatementCallback; bad SQL grammar [SELECT * FROM lobster_learning_corpus WHERE company_id=? AND status='raw' ORDER BY create_time DESC LIMIT 100]; nested exception is java.sql.SQLSyntaxErrorException: Table 'fs_tenant_t202605253515.lobster_learning_corpus' doesn't exist
  4312. POST /workflow/lobster/sales-corpus/batch-import | lobster.js | msg=dialogs或chats不能为空
  4313. POST /workflow/lobster/sales-corpus/dialog | lobster.js | msg=customerQuestion和salesAnswer不能为空
  4314. POST /workflow/lobster-exec/next-node | lobster.js | msg=Required request parameter 'instanceId' for method parameter type Long is not present
  4315. POST /workflow/lobster-exec/start | lobster.js | msg=Required request parameter 'workflowId' for method parameter type Long is not present
  4316. PUT /adv/advertiser/ | advertiser.js | msg=Request method 'PUT' not supported
  4317. PUT /adv/callback-account/ | callbackAccount.js | msg=Request method 'PUT' not supported
  4318. PUT /adv/domains/ | domain.js | msg=Request method 'PUT' not supported
  4319. PUT /adv/landing-page-templates/ | landingPageTemplate.js | msg=Request method 'PUT' not supported
  4320. PUT /adv/promotion-account/ | promotionAccount.js | msg=Request method 'PUT' not supported
  4321. PUT /adv/site/ | site.js | msg=Request method 'PUT' not supported
  4322. PUT /bill/billLog | billLog.js | msg=操作失败
  4323. PUT /chat/chatDataset | chatDataset.js | msg=
  4324. PUT /chat/chatDatasetFile | chatDatasetFile.js | msg=
  4325. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where file_id = null' at line 3
  4326. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/chat/ChatDatasetFileMapper.xml]
  4327. ### The error may involve defaultParameterMap
  4328. ### The error occurred while setting parameters
  4329. ### SQL: update chat_dataset_file where file_id = ?
  4330. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where file_id = null' at line 3
  4331. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where file_id = null' at line 3
  4332. PUT /chat/chatKeyword | chatKeyword.js | msg=操作失败
  4333. PUT /chat/chatMsg | chatMsg.js | msg=
  4334. PUT /chat/chatMsgLogs | chatMsgLogs.js | msg=
  4335. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4336. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/chat/ChatMsgLogsMapper.xml]
  4337. ### The error may involve defaultParameterMap
  4338. ### The error occurred while setting parameters
  4339. ### SQL: update chat_msg_logs where logs_id = ?
  4340. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4341. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4342. PUT /chat/chatRole | chatRole.js | msg=
  4343. PUT /chat/chatSession | chatSession.js | msg=操作失败
  4344. PUT /chat/chatUser | chatUser.js | msg=
  4345. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4346. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/chat/ChatUserMapper.xml]
  4347. ### The error may involve defaultParameterMap
  4348. ### The error occurred while setting parameters
  4349. ### SQL: update chat_user where user_id = ?
  4350. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4351. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4352. PUT /company/aiSipCall/aiSipCallUser | aiSipCallUser.js | msg=操作失败
  4353. PUT /company/aiSipCall/bizGroup | aiSipCallBizGroup.js | msg=
  4354. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4355. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallBizGroupMapper.xml]
  4356. ### The error may involve defaultParameterMap
  4357. ### The error occurred while setting parameters
  4358. ### SQL: update ai_sip_call_biz_group where group_id = ?
  4359. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4360. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4361. PUT /company/aiSipCall/gateway | aiSipCallGateway.js | msg=操作失败
  4362. PUT /company/aiSipCall/llmAgentAccount | aiSipCallLlmAgentAccount.js | msg=
  4363. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4364. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallLlmAgentAccountMapper.xml]
  4365. ### The error may involve defaultParameterMap
  4366. ### The error occurred while setting parameters
  4367. ### SQL: update ai_sip_call_llm_agent_account where id = ?
  4368. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4369. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4370. PUT /company/aiSipCall/outboundCdr | aiSipCallOutboundCdr.js | msg=
  4371. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4372. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallOutboundCdrMapper.xml]
  4373. ### The error may involve defaultParameterMap
  4374. ### The error occurred while setting parameters
  4375. ### SQL: update ai_sip_call_outbound_cdr where id = ?
  4376. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4377. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4378. PUT /company/aiSipCall/phone | aiSipCallPhone.js | msg=
  4379. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4380. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallPhoneMapper.xml]
  4381. ### The error may involve defaultParameterMap
  4382. ### The error occurred while setting parameters
  4383. ### SQL: update ai_sip_call_phone where id = ?
  4384. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4385. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4386. PUT /company/aiSipCall/task | aiSipCallTask.js | msg=syntax error, pos 1, line 1, column 2<!DOCTYPE html>
  4387. <html lang="zh">
  4388. <head>
  4389. <meta charset="utf-8">
  4390. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4391. <title>RuoYi - 404</title>
  4392. <link href="/css/bootstrap.min.css" rel="stylesheet"/>
  4393. <link href="/css/animate.min.css" rel="stylesheet"/>
  4394. <link href="/css/style.min.css" rel="stylesheet"/>
  4395. </head>
  4396. <body class="gray-bg">
  4397. <div class="middle-box text-center animated fadeInDown">
  4398. <h1>404</h1>
  4399. <h3 class="font-bold">找不到网页!</h3>
  4400. <div class="error-desc">
  4401. 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。
  4402. <a href="javascript:index()" class="btn btn-primary m-t">主页</a>
  4403. </div>
  4404. </div>
  4405. <script>
  4406. var ctx = "\/";
  4407. function index() {
  4408. window.top.location = ctx + "index";
  4409. }
  4410. </script>
  4411. </body>
  4412. </html>
  4413. PUT /company/aiSipCall/voiceTtsAliyun | aiSipCallVoiceTtsAliyun.js | msg=
  4414. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4415. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/aiSipCall/AiSipCallVoiceTtsAliyunMapper.xml]
  4416. ### The error may involve defaultParameterMap
  4417. ### The error occurred while setting parameters
  4418. ### SQL: update ai_sip_call_voice_tts_aliyun where id = ?
  4419. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4420. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4421. PUT /company/companUsercard | companyUserCard.js | msg=
  4422. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4423. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyUserCardMapper.xml]
  4424. ### The error may involve defaultParameterMap
  4425. ### The error occurred while setting parameters
  4426. ### SQL: update company_user_card where id = ?
  4427. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4428. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4429. PUT /company/companyBindUser | companyBindUser.js | msg=
  4430. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4431. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyDomainBindUserMapper.xml]
  4432. ### The error may involve defaultParameterMap
  4433. ### The error occurred while setting parameters
  4434. ### SQL: update company_domain_bind_user where id = ?
  4435. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4436. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4437. PUT /company/companyClient | companyClient.js | msg=
  4438. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4439. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxClientMapper.xml]
  4440. ### The error may involve defaultParameterMap
  4441. ### The error occurred while setting parameters
  4442. ### SQL: update company_wx_client where id = ?
  4443. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4444. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4445. PUT /company/companyDept | companyDept.js | msg=
  4446. PUT /company/companyDomainBind | companyDomainBind.js | msg=操作失败
  4447. PUT /company/companyMenu | companyMenu.js | msg=
  4448. PUT /company/companyPost | companyPost.js | msg=操作失败
  4449. PUT /company/companyProfit | companyProfit.js | msg=操作失败
  4450. PUT /company/companyRecharge | companyRecharge.js | msg=Request method 'PUT' not supported
  4451. PUT /company/companyRole | companyRole.js | msg=
  4452. PUT /company/companySms | companySms.js | msg=
  4453. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where sms_id = null' at line 3
  4454. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanySmsMapper.xml]
  4455. ### The error may involve defaultParameterMap
  4456. ### The error occurred while setting parameters
  4457. ### SQL: update company_sms where sms_id = ?
  4458. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where sms_id = null' at line 3
  4459. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where sms_id = null' at line 3
  4460. PUT /company/companySmsLogs | companySmsLogs.js | msg=
  4461. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4462. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanySmsLogsMapper.xml]
  4463. ### The error may involve defaultParameterMap
  4464. ### The error occurred while setting parameters
  4465. ### SQL: update company_sms_logs where logs_id = ?
  4466. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4467. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4468. PUT /company/companySmsOrder | companySmsOrder.js | msg=
  4469. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4470. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanySmsOrderMapper.xml]
  4471. ### The error may involve defaultParameterMap
  4472. ### The error occurred while setting parameters
  4473. ### SQL: update company_sms_order where order_id = ?
  4474. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4475. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  4476. PUT /company/companySmsTemp | companySmsTemp.js | msg=操作失败
  4477. PUT /company/companyVoiceDialog | companyVoiceDialog.js | msg=
  4478. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4479. ### The error may exist in com/fs/company/mapper/CompanyVoiceDialogMapper.java (best guess)
  4480. ### The error may involve com.fs.company.mapper.CompanyVoiceDialogMapper.updateById-Inline
  4481. ### The error occurred while setting parameters
  4482. ### SQL: UPDATE company_voice_dialog WHERE id=?
  4483. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4484. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=null' at line 1
  4485. PUT /company/companyVoiceRobotic | companyVoiceRobotic.js | msg=
  4486. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4487. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyVoiceRoboticMapper.xml]
  4488. ### The error may involve defaultParameterMap
  4489. ### The error occurred while setting parameters
  4490. ### SQL: update company_voice_robotic where id = ?
  4491. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4492. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4493. PUT /company/companyVoiceRoboticCallBlacklist | companyVoiceRoboticCallBlacklist.js | msg=操作失败
  4494. PUT /company/companyVoiceRoboticCallBlacklist/changeStatus | companyVoiceRoboticCallBlacklist.js | msg=黑名单记录不存在
  4495. PUT /company/companyWorkflow/status/ | companyWorkflow.js | msg=Request method 'PUT' not supported
  4496. PUT /company/companyWx | companyAccount.js | msg=
  4497. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4498. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxAccountMapper.xml]
  4499. ### The error may involve defaultParameterMap
  4500. ### The error occurred while setting parameters
  4501. ### SQL: update company_wx_account where id = ?
  4502. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4503. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4504. PUT /company/consume | tcmconsume.js | msg=操作失败
  4505. PUT /company/tcmScheduleReport | tcmScheduleReport.js | msg=操作失败
  4506. PUT /company/VoiceRoboticWx | VoiceRoboticWx.js | msg=
  4507. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4508. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyVoiceRoboticWxMapper.xml]
  4509. ### The error may involve defaultParameterMap
  4510. ### The error occurred while setting parameters
  4511. ### SQL: update company_voice_robotic_wx where id = ?
  4512. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4513. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4514. PUT /company/wxDialog | wxDialog.js | msg=
  4515. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4516. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxDialogMapper.xml]
  4517. ### The error may involve defaultParameterMap
  4518. ### The error occurred while setting parameters
  4519. ### SQL: update company_wx_dialog where id = ?
  4520. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4521. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4522. PUT /company/wxUser | wxUser.js | msg=
  4523. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4524. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxUserMapper.xml]
  4525. ### The error may involve defaultParameterMap
  4526. ### The error occurred while setting parameters
  4527. ### SQL: update company_wx_user where user_id = ?
  4528. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4529. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4530. PUT /company/wxUser/bindMiniUserId | wxUser.js | msg=
  4531. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4532. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxUserMapper.xml]
  4533. ### The error may involve defaultParameterMap
  4534. ### The error occurred while setting parameters
  4535. ### SQL: update company_wx_user where user_id = ?
  4536. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4537. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  4538. PUT /company/wxUserGroup | wxUserGroup.js | msg=
  4539. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4540. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/company/CompanyWxUserGroupMapper.xml]
  4541. ### The error may involve defaultParameterMap
  4542. ### The error occurred while setting parameters
  4543. ### SQL: update company_wx_user_group where group_id = ?
  4544. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4545. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where group_id = null' at line 3
  4546. PUT /course/courseFinishTemp | courseFinishTemp.js | msg=
  4547. PUT /course/courseFinishTempParent | courseFinishTempParent.js | msg=操作失败
  4548. PUT /course/courseLink | courseLink.js | msg=
  4549. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where link_id = null' at line 3
  4550. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseLinkMapper.xml]
  4551. ### The error may involve defaultParameterMap
  4552. ### The error occurred while setting parameters
  4553. ### SQL: update fs_course_link where link_id = ?
  4554. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where link_id = null' at line 3
  4555. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where link_id = null' at line 3
  4556. PUT /course/courseLink/createLinkUrl | sopCourseLink.js | msg=
  4557. PUT /course/courseRedPacketLog | courseRedPacketLog.js | msg=
  4558. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4559. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseRedPacketLogMapper.xml]
  4560. ### The error may involve defaultParameterMap
  4561. ### The error occurred while setting parameters
  4562. ### SQL: update fs_course_red_packet_log where log_id = ?
  4563. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4564. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4565. PUT /course/courseTrafficLog | courseTrafficLog.js | msg=
  4566. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4567. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseTrafficLogMapper.xml]
  4568. ### The error may involve defaultParameterMap
  4569. ### The error occurred while setting parameters
  4570. ### SQL: update fs_course_traffic_log where log_id = ?
  4571. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4572. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where log_id = null' at line 3
  4573. PUT /course/courseWatchLog | courseWatchLog.js | msg=操作失败
  4574. PUT /course/period | period.js | msg=
  4575. PUT /course/playSourceConfig | coursePlaySourceConfig.js | msg=主键ID不能为空
  4576. PUT /course/playSourceConfig/updateBindConfig | coursePlaySourceConfig.js | msg=Request method 'PUT' not supported
  4577. PUT /course/playSourceConfig/updateUnbindConfig | coursePlaySourceConfig.js | msg=Request method 'PUT' not supported
  4578. PUT /course/sop | appIdList.js | msg=nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'corpId' in 'class com.fs.course.domain.FsCourseSop'
  4579. PUT /course/sopLogs | sopLogs.js | msg=
  4580. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4581. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsCourseSopLogsMapper.xml]
  4582. ### The error may involve defaultParameterMap
  4583. ### The error occurred while setting parameters
  4584. ### SQL: update fs_course_sop_logs where id = ?
  4585. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4586. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4587. PUT /course/userCourse | userCourse.js | msg=
  4588. PUT /course/userCourseCategory | userCourseCategory.js | msg=操作失败
  4589. PUT /course/userCourseVideo | userCourseVideo.js | msg=Request method 'PUT' not supported
  4590. PUT /course/userWatchCourseStatistics | userWatchCourseStatistics.js | msg=
  4591. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4592. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserWatchCourseStatisticsMapper.xml]
  4593. ### The error may involve defaultParameterMap
  4594. ### The error occurred while setting parameters
  4595. ### SQL: update fs_user_watch_course_statistics where id = ?
  4596. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4597. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4598. PUT /course/userWatchStatistics | userWatchStatistics.js | msg=
  4599. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4600. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserWatchStatisticsMapper.xml]
  4601. ### The error may involve defaultParameterMap
  4602. ### The error occurred while setting parameters
  4603. ### SQL: update fs_user_watch_statistics where id = ?
  4604. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4605. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4606. PUT /crm/customer/edit | customer.js | msg=操作失败
  4607. PUT /crm/customer/editCrm | customer.js | msg=Request method 'PUT' not supported
  4608. PUT /crm/customer/editLine | customer.js | msg=Request method 'PUT' not supported
  4609. PUT /crm/customerContacts | customerContacts.js | msg=操作失败
  4610. PUT /crm/customerExt | customerExt.js | msg=
  4611. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where ext_id = null' at line 3
  4612. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmCustomerExtMapper.xml]
  4613. ### The error may involve defaultParameterMap
  4614. ### The error occurred while setting parameters
  4615. ### SQL: update crm_customer_ext where ext_id = ?
  4616. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where ext_id = null' at line 3
  4617. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where ext_id = null' at line 3
  4618. PUT /crm/customerLogs | customerLogs.js | msg=
  4619. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4620. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmCustomerLogsMapper.xml]
  4621. ### The error may involve defaultParameterMap
  4622. ### The error occurred while setting parameters
  4623. ### SQL: update crm_customer_logs where logs_id = ?
  4624. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4625. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4626. PUT /crm/customerProperty | customerProperty.js | msg=操作失败
  4627. PUT /crm/customerPropertyTemplate | propertyTemplate.js | msg=操作失败
  4628. PUT /crm/customerUser | customerUser.js | msg=
  4629. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where customer_user_id = null' at line 3
  4630. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/crm/CrmCustomerUserMapper.xml]
  4631. ### The error may involve defaultParameterMap
  4632. ### The error occurred while setting parameters
  4633. ### SQL: update crm_customer_user where customer_user_id = ?
  4634. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where customer_user_id = null' at line 3
  4635. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where customer_user_id = null' at line 3
  4636. PUT /crm/customerVisit | customerVisit.js | msg=Request method 'PUT' not supported
  4637. PUT /fastGpt/fastgptChatArtificialWords | fastgptChatArtificialWords.js | msg=
  4638. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4639. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastgptChatArtificialWordsMapper.xml]
  4640. ### The error may involve defaultParameterMap
  4641. ### The error occurred while setting parameters
  4642. ### SQL: update fastgpt_chat_artificial_words where id = ?
  4643. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4644. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4645. PUT /fastGpt/fastGptChatKeyword | fastGptChatKeyword.js | msg=操作失败
  4646. PUT /fastGpt/fastGptChatMsg | fastGptChatMsg.js | msg=
  4647. PUT /fastGpt/fastGptChatMsgLogs | fastGptChatMsgLogs.js | msg=
  4648. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4649. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptChatMsgLogsMapper.xml]
  4650. ### The error may involve defaultParameterMap
  4651. ### The error occurred while setting parameters
  4652. ### SQL: update fastgpt_chat_msg_logs where logs_id = ?
  4653. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4654. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4655. PUT /fastGpt/fastGptChatSession | fastGptChatSession.js | msg=操作失败
  4656. PUT /fastGpt/fastGptCollection | fastGptCollection.js | msg=
  4657. PUT /fastGpt/fastGptCollentionData | fastGptCollentionData.js | msg=
  4658. PUT /fastGpt/fastGptDataset | fastGptDataset.js | msg=Request method 'PUT' not supported
  4659. PUT /fastGpt/fastgptEventLogTotal | fastgptEventLogTotal.js | msg=
  4660. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4661. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastgptEventLogTotalMapper.xml]
  4662. ### The error may involve defaultParameterMap
  4663. ### The error occurred while setting parameters
  4664. ### SQL: update fastgpt_event_log_total where id = ?
  4665. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4666. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4667. PUT /fastGpt/fastGptKeywordSend | fastGptKeywordSend.js | msg=
  4668. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4669. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptKeywordSendMapper.xml]
  4670. ### The error may involve defaultParameterMap
  4671. ### The error occurred while setting parameters
  4672. ### SQL: update fastgpt_keyword_send where id = ?
  4673. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4674. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4675. PUT /fastGpt/fastGptRole/ | role.js | msg=未知异常,请联系管理员
  4676. PUT /fastGpt/fastGptRoleTag | fastGptRoleTag.js | msg=
  4677. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4678. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptRoleTagMapper.xml]
  4679. ### The error may involve defaultParameterMap
  4680. ### The error occurred while setting parameters
  4681. ### SQL: update fastgpt_role_tag where id = ?
  4682. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4683. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4684. PUT /fastGpt/fastGptUser | fastGptUser.js | msg=
  4685. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where uid = null' at line 3
  4686. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/fastGpt/FastGptUserMapper.xml]
  4687. ### The error may involve defaultParameterMap
  4688. ### The error occurred while setting parameters
  4689. ### SQL: update fastgpt_user where uid = ?
  4690. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where uid = null' at line 3
  4691. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where uid = null' at line 3
  4692. PUT /his/diagnosis | firstDiagnosis.js | msg=操作失败
  4693. PUT /his/doctor/editDoctor | doctor.js | msg=Request method 'PUT' not supported
  4694. PUT /his/doctor/editDoctorPrice | doctor.js | msg=Request method 'PUT' not supported
  4695. PUT /his/doctor/editFollow | doctor.js | msg=Request method 'PUT' not supported
  4696. PUT /his/doctor/editPassWord | doctor.js | msg=Request method 'PUT' not supported
  4697. PUT /his/follow | follow.js | msg=操作失败
  4698. PUT /his/FsFollowReport | FsFollowReport.js | msg=
  4699. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4700. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsFollowReportMapper.xml]
  4701. ### The error may involve defaultParameterMap
  4702. ### The error occurred while setting parameters
  4703. ### SQL: update fs_follow_report where id = ?
  4704. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4705. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4706. PUT /his/integralGoods | integralGoods.js | msg=操作失败
  4707. PUT /his/integralOrder | integralOrder.js | msg=
  4708. PUT /his/integralOrder/sendGoods | integralOrder.js | msg=订单不存在
  4709. PUT /live/config | liveQuestionLive.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  4710. PUT /live/coupon | liveCoupon.js | msg=操作失败
  4711. PUT /live/coupon/issue | liveCouponIssue.js | msg=Request method 'PUT' not supported
  4712. PUT /live/coupon/user | liveCouponUser.js | msg=Request method 'PUT' not supported
  4713. PUT /live/gift | gift.js | msg=
  4714. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where gift_id = null' at line 3
  4715. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveGiftMapper.xml]
  4716. ### The error may involve defaultParameterMap
  4717. ### The error occurred while setting parameters
  4718. ### SQL: update live_gift where gift_id = ?
  4719. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where gift_id = null' at line 3
  4720. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where gift_id = null' at line 3
  4721. PUT /live/liveAfterSales | liveAfterSales.js | msg=
  4722. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4723. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveAfterSalesMapper.xml]
  4724. ### The error may involve defaultParameterMap
  4725. ### The error occurred while setting parameters
  4726. ### SQL: update live_after_sales where id = ?
  4727. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4728. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4729. PUT /live/liveAnchor | liveAnchor.js | msg=操作失败
  4730. PUT /live/liveGoods | liveGoods.js | msg=请选择商品
  4731. PUT /live/liveLotteryRecord | liveLotteryRecord.js | msg=
  4732. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where lottery_id = null' at line 3
  4733. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRecordMapper.xml]
  4734. ### The error may involve defaultParameterMap
  4735. ### The error occurred while setting parameters
  4736. ### SQL: update live_lottery_record where lottery_id = ?
  4737. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where lottery_id = null' at line 3
  4738. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where lottery_id = null' at line 3
  4739. PUT /live/liveLotteryRegistration | liveLotteryRegistration.js | msg=
  4740. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where registration_id = null' at line 3
  4741. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveLotteryRegistrationMapper.xml]
  4742. ### The error may involve defaultParameterMap
  4743. ### The error occurred while setting parameters
  4744. ### SQL: update live_lottery_registration where registration_id = ?
  4745. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where registration_id = null' at line 3
  4746. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where registration_id = null' at line 3
  4747. PUT /live/liveMsg | liveMsg.js | msg=操作失败
  4748. PUT /live/liveOrder/editDeliveryId | liveOrder.js | msg=Request method 'PUT' not supported
  4749. PUT /live/liveOrder/update | liveOrder.js | msg=
  4750. PUT /live/liveOrderItem | liveOrderitems.js | msg=
  4751. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where item_id = null' at line 3
  4752. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveOrderItemMapper.xml]
  4753. ### The error may involve defaultParameterMap
  4754. ### The error occurred while setting parameters
  4755. ### SQL: update live_order_item where item_id = ?
  4756. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where item_id = null' at line 3
  4757. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where item_id = null' at line 3
  4758. PUT /live/liveOrderLogs | liveOrderLogs.js | msg=
  4759. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4760. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveOrderLogsMapper.xml]
  4761. ### The error may involve defaultParameterMap
  4762. ### The error occurred while setting parameters
  4763. ### SQL: update live_order_logs where logs_id = ?
  4764. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4765. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where logs_id = null' at line 3
  4766. PUT /live/liveRedConf | liveRedConf.js | msg=
  4767. PUT /live/liveUserFavorite | liveUserFavorite.js | msg=操作失败
  4768. PUT /live/liveUserFollow | liveUserFollow.js | msg=操作失败
  4769. PUT /live/liveUserLike | liveUserLike.js | msg=操作失败
  4770. PUT /live/liveUserLotteryRecord | liveUserLotteryRecord.js | msg=
  4771. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4772. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveUserLotteryRecordMapper.xml]
  4773. ### The error may involve defaultParameterMap
  4774. ### The error occurred while setting parameters
  4775. ### SQL: update live_user_lottery_record where id = ?
  4776. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4777. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4778. PUT /live/liveVideo | liveVideo.js | msg=操作失败
  4779. PUT /live/liveWatchLog | liveWatchLog.js | msg=操作失败
  4780. PUT /live/liveWatchUser/changeUserState | liveWatchUser.js | msg=Required request parameter 'liveId' for method parameter type Long is not present
  4781. PUT /live/record | record.js | msg=
  4782. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4783. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/live/LiveRewardRecordMapper.xml]
  4784. ### The error may involve defaultParameterMap
  4785. ### The error occurred while setting parameters
  4786. ### SQL: update live_reward_record where id = ?
  4787. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4788. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4789. PUT /live/task | task.js | msg=
  4790. PUT /live/words | words.js | msg=操作失败
  4791. PUT /monitor/job | job.js | msg=cronExpression cannot be null
  4792. PUT /monitor/job/changeStatus | job.js | msg=
  4793. PUT /monitor/job/run | job.js | msg=Couldn't store trigger 'DEFAULT.MT_2m0olvo79el7x' for 'DEFAULT.TASK_CLASS_NAMEnull' job:The job (DEFAULT.TASK_CLASS_NAMEnull) referenced by the trigger does not exist.
  4794. PUT /qw/appContactWay | appContactWay.js | msg=操作失败
  4795. PUT /qw/autoTags | autoTags.js | msg=
  4796. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4797. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwAutoTagsMapper.xml]
  4798. ### The error may involve defaultParameterMap
  4799. ### The error occurred while setting parameters
  4800. ### SQL: update qw_auto_tags where id = ?
  4801. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4802. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4803. PUT /qw/autoTagsLogs | autoTagsLogs.js | msg=
  4804. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4805. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwAutoTagsLogsMapper.xml]
  4806. ### The error may involve defaultParameterMap
  4807. ### The error occurred while setting parameters
  4808. ### SQL: update qw_auto_tags_logs where id = ?
  4809. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4810. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4811. PUT /qw/autoTagsRules | autoTagsRules.js | msg=
  4812. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4813. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwAutoTagsRulesMapper.xml]
  4814. ### The error may involve defaultParameterMap
  4815. ### The error occurred while setting parameters
  4816. ### SQL: update qw_auto_tags_rules where id = ?
  4817. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4818. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4819. PUT /qw/contactBatch | contactBatch.js | msg=
  4820. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4821. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwContactBatchMapper.xml]
  4822. ### The error may involve defaultParameterMap
  4823. ### The error occurred while setting parameters
  4824. ### SQL: update qw_contact_batch where id = ?
  4825. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4826. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4827. PUT /qw/contactWay | contactWay.js | msg=修改企微活码失败: null
  4828. PUT /qw/contactWayGroup | contactWayGroup.js | msg=
  4829. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4830. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwContactWayGroupMapper.xml]
  4831. ### The error may involve defaultParameterMap
  4832. ### The error occurred while setting parameters
  4833. ### SQL: update qw_contact_way_group where id = ?
  4834. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4835. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4836. PUT /qw/contactWayLogs | contactWayLogs.js | msg=
  4837. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4838. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwContactWayLogsMapper.xml]
  4839. ### The error may involve defaultParameterMap
  4840. ### The error occurred while setting parameters
  4841. ### SQL: update qw_contact_way_logs where id = ?
  4842. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4843. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4844. PUT /qw/course/courseWatchLog | courseWatchLog.js | msg=操作失败
  4845. PUT /qw/drainageLink | drainageLink.js | msg=
  4846. PUT /qw/drainageLinkLogs | drainageLinkLogs.js | msg=
  4847. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4848. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwDrainageLinkLogsMapper.xml]
  4849. ### The error may involve defaultParameterMap
  4850. ### The error occurred while setting parameters
  4851. ### SQL: update qw_drainage_link_logs where id = ?
  4852. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4853. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4854. PUT /qw/externalContact | externalContact.js | msg=操作失败
  4855. PUT /qw/externalContact/bindUserId | externalContact.js | msg=
  4856. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4857. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwExternalContactMapper.xml]
  4858. ### The error may involve defaultParameterMap
  4859. ### The error occurred while setting parameters
  4860. ### SQL: update qw_external_contact where id = ?
  4861. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4862. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4863. PUT /qw/externalContact/call | externalContact.js | msg=
  4864. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4865. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwExternalContactMapper.xml]
  4866. ### The error may involve defaultParameterMap
  4867. ### The error occurred while setting parameters
  4868. ### SQL: update qw_external_contact where id = ?
  4869. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4870. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4871. PUT /qw/externalContact/editbindCustomer | externalContact.js | msg=
  4872. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'on duplicate key update' at line 4
  4873. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwExternalContactCrmMapper.xml]
  4874. ### The error may involve defaultParameterMap
  4875. ### The error occurred while setting parameters
  4876. ### SQL: insert into qw_external_contact_crm on duplicate key update
  4877. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'on duplicate key update' at line 4
  4878. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'on duplicate key update' at line 4
  4879. PUT /qw/externalContact/editStatus | externalContact.js | msg=
  4880. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4881. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwExternalContactMapper.xml]
  4882. ### The error may involve defaultParameterMap
  4883. ### The error occurred while setting parameters
  4884. ### SQL: update qw_external_contact where id = ?
  4885. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4886. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4887. PUT /qw/externalContactInfo | externalContactInfo.js | msg=操作失败
  4888. PUT /qw/externalContactInfo/editAllTalk/ | externalContactInfo.js | msg=Request method 'PUT' not supported
  4889. PUT /qw/externalContactInfo/editTalk/ | externalContactInfo.js | msg=Request method 'PUT' not supported
  4890. PUT /qw/externalContactTransferLog | externalContactTransferLog.js | msg=
  4891. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4892. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwExternalContactTransferLogMapper.xml]
  4893. ### The error may involve defaultParameterMap
  4894. ### The error occurred while setting parameters
  4895. ### SQL: update qw_external_contact_transfer_log where id = ?
  4896. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4897. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4898. PUT /qw/friendCircle | friendCircle.js | msg=
  4899. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4900. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleMapper.xml]
  4901. ### The error may involve defaultParameterMap
  4902. ### The error occurred while setting parameters
  4903. ### SQL: update qw_friend_circle where id = ?
  4904. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4905. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4906. PUT /qw/friendCircleTask | friendCircleTask.js | msg=
  4907. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4908. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCircleTaskMapper.xml]
  4909. ### The error may involve defaultParameterMap
  4910. ### The error occurred while setting parameters
  4911. ### SQL: update qw_friend_circle_task where id = ?
  4912. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4913. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4914. PUT /qw/friendComments | friendComments.js | msg=
  4915. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4916. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCommentsMapper.xml]
  4917. ### The error may involve defaultParameterMap
  4918. ### The error occurred while setting parameters
  4919. ### SQL: update qw_friend_comments where id = ?
  4920. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4921. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4922. PUT /qw/friendCustomerList | friendCustomerList.js | msg=
  4923. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4924. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendCustomerListMapper.xml]
  4925. ### The error may involve defaultParameterMap
  4926. ### The error occurred while setting parameters
  4927. ### SQL: update qw_friend_customer_list where id = ?
  4928. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4929. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4930. PUT /qw/friendWelcomeItem | friendWelcomeItem.js | msg=
  4931. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4932. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwFriendWelcomeItemMapper.xml]
  4933. ### The error may involve defaultParameterMap
  4934. ### The error occurred while setting parameters
  4935. ### SQL: update qw_friend_welcome_item where id = ?
  4936. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4937. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4938. PUT /qw/group_chat_user/cogradientGroupChatUser | group_chat_user.js | msg=Request method 'PUT' not supported
  4939. PUT /qw/groupMsg | groupMsg.js | msg=Request method 'PUT' not supported
  4940. PUT /qw/groupMsgUser | groupMsgUser.js | msg=
  4941. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4942. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwGroupMsgUserMapper.xml]
  4943. ### The error may involve defaultParameterMap
  4944. ### The error occurred while setting parameters
  4945. ### SQL: update qw_group_msg_user where id = ?
  4946. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4947. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4948. PUT /qw/luckyBag | luckyBag.js | msg=操作失败
  4949. PUT /qw/luckyBagCollectRecord | luckyBagCollectRecord.js | msg=操作失败
  4950. PUT /qw/material | material.js | msg=操作失败
  4951. PUT /qw/materialGroup | materialGroup.js | msg=操作失败
  4952. PUT /qw/qw/QwWorkTask | QwWorkTask.js | msg=操作失败
  4953. PUT /qw/qwPushCount/tokenList | fastGptPushTokenTotal.js | msg=Request method 'PUT' not supported
  4954. PUT /qw/qwUserVoiceLog | qwUserVoiceLog.js | msg=
  4955. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4956. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserVoiceLogMapper.xml]
  4957. ### The error may involve defaultParameterMap
  4958. ### The error occurred while setting parameters
  4959. ### SQL: update qw_user_voice_log where id = ?
  4960. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4961. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4962. PUT /qw/QwWorkTask | QwWorkTask.js | msg=操作失败
  4963. PUT /qw/QwWorkTaskNew | QwWorkTaskNew.js | msg=操作失败
  4964. PUT /qw/QwWorkTaskNew/edit2 | QwWorkTaskNew.js | msg=操作失败
  4965. PUT /qw/QwWorkTaskNew/edit3 | QwWorkTaskNew.js | msg=操作失败
  4966. PUT /qw/sop | sop.js | msg=sop编号或模板编号不能为空
  4967. PUT /qw/sop/executeSop/ | sop.js | msg=Request method 'PUT' not supported
  4968. PUT /qw/sopTemp | sopTemp.js | msg=操作失败
  4969. PUT /qw/statistic | groupChatStatistic.js | msg=
  4970. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4971. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwGroupchatStatisticMapper.xml]
  4972. ### The error may involve defaultParameterMap
  4973. ### The error occurred while setting parameters
  4974. ### SQL: update qw_groupchat_statistic where id = ?
  4975. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4976. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4977. PUT /qw/tag | tag.js | msg=操作失败
  4978. PUT /qw/tagGroup | tagGroup.js | msg=未知异常,请联系管理员
  4979. PUT /qw/user | user.js | msg=
  4980. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4981. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserMapper.xml]
  4982. ### The error may involve defaultParameterMap
  4983. ### The error occurred while setting parameters
  4984. ### SQL: update qw_user where id = ?
  4985. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4986. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4987. PUT /qw/user/bindAi | user.js | msg=
  4988. PUT /qw/user/bindQwUser | user.js | msg=
  4989. PUT /qw/userBehaviorData | userBehaviorData.js | msg=
  4990. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4991. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserbehaviorDataMapper.xml]
  4992. ### The error may involve defaultParameterMap
  4993. ### The error occurred while setting parameters
  4994. ### SQL: update qw_userbehavior_data where id = ?
  4995. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4996. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4997. PUT /qw/userVideo | userVideo.js | msg=
  4998. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  4999. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/qw/QwUserVideoMapper.xml]
  5000. ### The error may involve defaultParameterMap
  5001. ### The error occurred while setting parameters
  5002. ### SQL: update qw_user_video where id = ?
  5003. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5004. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5005. PUT /qw/welcome | welcome.js | msg=未知异常,请联系管理员
  5006. PUT /shop/tag | api.js | msg=操作失败
  5007. PUT /store/city | city.js | msg=
  5008. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5009. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsCityMapper.xml]
  5010. ### The error may involve defaultParameterMap
  5011. ### The error occurred while setting parameters
  5012. ### SQL: update fs_city where id = ?
  5013. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5014. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5015. PUT /store/collectionSchedule | collectionSchedule.js | msg=
  5016. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5017. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsUserInformationCollectionScheduleMapper.xml]
  5018. ### The error may involve defaultParameterMap
  5019. ### The error occurred while setting parameters
  5020. ### SQL: update fs_user_information_collection_schedule where id = ?
  5021. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5022. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5023. PUT /store/collectionSchedule/endProcess | collectionSchedule.js | msg=Request method 'PUT' not supported
  5024. PUT /store/healthRecord | healthRecord.js | msg=操作失败
  5025. PUT /store/his/store/audit | store.js | msg=Request method 'PUT' not supported
  5026. PUT /store/inquiryOrder | inquiryOrder.js | msg=
  5027. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5028. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsInquiryOrderMapper.xml]
  5029. ### The error may involve defaultParameterMap
  5030. ### The error occurred while setting parameters
  5031. ### SQL: update fs_inquiry_order where order_id = ?
  5032. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5033. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5034. PUT /store/inquiryOrder/editStatus | inquiryOrder.js | msg=
  5035. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5036. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsInquiryOrderMapper.xml]
  5037. ### The error may involve defaultParameterMap
  5038. ### The error occurred while setting parameters
  5039. ### SQL: update fs_inquiry_order where order_id = ?
  5040. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5041. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5042. PUT /store/inquiryOrderReport | inquiryOrderReport.js | msg=
  5043. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where report_id = null' at line 3
  5044. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsInquiryOrderReportMapper.xml]
  5045. ### The error may involve defaultParameterMap
  5046. ### The error occurred while setting parameters
  5047. ### SQL: update fs_inquiry_order_report where report_id = ?
  5048. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where report_id = null' at line 3
  5049. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where report_id = null' at line 3
  5050. PUT /store/inquiryOrderReport/audit | inquiryOrderReport.js | msg=
  5051. PUT /store/inquiryOrderReport/updateAuditReport | inquiryOrderReport.js | msg=
  5052. PUT /store/material | material.js | msg=操作失败
  5053. PUT /store/materialGroup | materialGroup.js | msg=操作失败
  5054. PUT /store/package | package.js | msg=操作失败
  5055. PUT /store/packageOrder | packageOrder.js | msg=
  5056. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5057. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsPackageOrderMapper.xml]
  5058. ### The error may involve defaultParameterMap
  5059. ### The error occurred while setting parameters
  5060. ### SQL: update fs_package_order where order_id = ?
  5061. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5062. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5063. PUT /store/patient | patient.js | msg=操作失败
  5064. PUT /store/prescribe | prescribe.js | msg=
  5065. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where prescribe_id = null' at line 3
  5066. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsPrescribeMapper.xml]
  5067. ### The error may involve defaultParameterMap
  5068. ### The error occurred while setting parameters
  5069. ### SQL: update fs_prescribe where prescribe_id = ?
  5070. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where prescribe_id = null' at line 3
  5071. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where prescribe_id = null' at line 3
  5072. PUT /store/store/menu | menu.js | msg=Request method 'PUT' not supported
  5073. PUT /store/store/prescribe | prescribe.js | msg=Request method 'PUT' not supported
  5074. PUT /store/store/prescribeDrug | prescribeDrug.js | msg=Request method 'PUT' not supported
  5075. PUT /store/store/shippingTemplates | shippingTemplates.js | msg=Request method 'PUT' not supported
  5076. PUT /store/store/storeAfterSales | storeAfterSales.js | msg=操作失败
  5077. PUT /store/store/storeAfterSalesItem | storeAfterSalesItem.js | msg=Request method 'PUT' not supported
  5078. PUT /store/store/storeAfterSalesStatus | storeAfterSalesStatus.js | msg=Request method 'PUT' not supported
  5079. PUT /store/store/storeCanvas | storeCanvas.js | msg=Request method 'PUT' not supported
  5080. PUT /store/store/storeCart | storeCart.js | msg=Request method 'PUT' not supported
  5081. PUT /store/store/storeOrder | storeOrder.js | msg=操作失败
  5082. PUT /store/store/storeOrder/editDeliveryId | storeOrder.js | msg=Request method 'PUT' not supported
  5083. PUT /store/store/storeOrderItem | storeOrderItem.js | msg=Request method 'PUT' not supported
  5084. PUT /store/store/storeOrderNotice | storeOrderNotice.js | msg=Request method 'PUT' not supported
  5085. PUT /store/store/storeOrderOffline | storeOrderOffline.js | msg=
  5086. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5087. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/hisStore/FsStoreOrderOfflineScrmMapper.xml]
  5088. ### The error may involve defaultParameterMap
  5089. ### The error occurred while setting parameters
  5090. ### SQL: update fs_store_order_offline_scrm where order_id = ?
  5091. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5092. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_id = null' at line 3
  5093. PUT /store/store/storeOrderStatus | storeOrderStatus.js | msg=Request method 'PUT' not supported
  5094. PUT /store/store/storePayment | storePayment.js | msg=
  5095. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5096. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/hisStore/FsStorePaymentScrmMapper.xml]
  5097. ### The error may involve defaultParameterMap
  5098. ### The error occurred while setting parameters
  5099. ### SQL: update fs_store_payment_scrm where payment_id = ?
  5100. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5101. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5102. PUT /store/store/storeProductAttr | storeProductAttr.js | msg=Request method 'PUT' not supported
  5103. PUT /store/store/storeProductAttrValue | storeProductAttrValue.js | msg=Request method 'PUT' not supported
  5104. PUT /store/store/storeProductCategory | storeProductCategory.js | msg=Request method 'PUT' not supported
  5105. PUT /store/store/storeProductDetails | storeProductDetails.js | msg=Request method 'PUT' not supported
  5106. PUT /store/store/storeProductGroup | storeProductGroup.js | msg=Request method 'PUT' not supported
  5107. PUT /store/store/storeProductPackage | storeProductPackage.js | msg=
  5108. PUT /store/store/storeProductRelation | storeProductRelation.js | msg=Request method 'PUT' not supported
  5109. PUT /store/store/storeProductReply | storeProductReply.js | msg=Request method 'PUT' not supported
  5110. PUT /store/store/storeProductRule | storeProductRule.js | msg=Request method 'PUT' not supported
  5111. PUT /store/store/storeProductTemplate | storeProductTemplate.js | msg=Request method 'PUT' not supported
  5112. PUT /store/store/storeProductYuyue | storeProductYuyue.js | msg=Request method 'PUT' not supported
  5113. PUT /store/store/storeShop | storeShop.js | msg=Request method 'PUT' not supported
  5114. PUT /store/store/storeShopStaff | storeShopStaff.js | msg=Request method 'PUT' not supported
  5115. PUT /store/store/storeVisit | storeVisit.js | msg=Request method 'PUT' not supported
  5116. PUT /store/store/user | user.js | msg=Request method 'PUT' not supported
  5117. PUT /store/store/userAddress | userAddress.js | msg=Request method 'PUT' not supported
  5118. PUT /store/storeAfterSales | storeAfterSales.js | msg=操作失败
  5119. PUT /store/storeAfterSales/auditing | storeAfterSales.js | msg=Request method 'PUT' not supported
  5120. PUT /store/storeAfterSales/noAuditing | storeAfterSales.js | msg=Request method 'PUT' not supported
  5121. PUT /store/storeAfterSales/tuiMoney | storeAfterSales.js | msg=Request method 'PUT' not supported
  5122. PUT /store/storeOrder | storeOrder.js | msg=操作失败
  5123. PUT /store/storeOrder/afterSales | storeOrder.js | msg=
  5124. PUT /store/storeOrder/bindCustomer | storeOrder.js | msg=
  5125. PUT /store/storeOrder/editDeliveryId | storeOrder.js | msg=Request method 'PUT' not supported
  5126. PUT /store/storeOrder/tuiOrder | storeOrder.js | msg=
  5127. PUT /store/storeOrder/updateMoney | storeOrder.js | msg=订单不存在
  5128. PUT /store/storeOrder/updateStoreOrder | storeOrder.js | msg=修改订单不存在
  5129. PUT /store/storePayment | storePayment.js | msg=
  5130. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5131. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsStorePaymentMapper.xml]
  5132. ### The error may involve defaultParameterMap
  5133. ### The error occurred while setting parameters
  5134. ### SQL: update fs_store_payment where payment_id = ?
  5135. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5136. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where payment_id = null' at line 3
  5137. PUT /store/storeProductPackage | storeProductPackage.js | msg=
  5138. PUT /store/user | user.js | msg=操作失败
  5139. PUT /store/userAddress | userAddress.js | msg=
  5140. PUT /store/userCoupon | userCoupon.js | msg=操作失败
  5141. PUT /store/userOnlineState | userOnlineState.js | msg=
  5142. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  5143. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/his/FsUserOnlineStateMapper.xml]
  5144. ### The error may involve defaultParameterMap
  5145. ### The error occurred while setting parameters
  5146. ### SQL: update fs_user_online_state where user_id = ?
  5147. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  5148. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where user_id = null' at line 3
  5149. PUT /system/approval | approval.js | msg=操作失败
  5150. PUT /tool/gen | gen.js | msg=实体类名称不能为空
  5151. PUT /user/fsUser | fsUser.js | msg=操作失败
  5152. PUT /user/fsUser/member | fsUser.js | msg=
  5153. ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5154. ### The error may exist in URL [jar:file:/D:/ylrz/ylrz_saas_his_scrm/fs-company/target/fs-company.jar!/BOOT-INF/lib/fs-service-1.1.0.jar!/mapper/course/FsUserCompanyUserMapper.xml]
  5155. ### The error may involve defaultParameterMap
  5156. ### The error occurred while setting parameters
  5157. ### SQL: update fs_user_company_user where id = ?
  5158. ### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5159. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id = null' at line 3
  5160. PUT /workflow/lobster/billing/token-coefficient | lobster.js | msg=系数不能为空
  5161. === 403 ===
  5162. GET /captchaImage | login.js
  5163. POST /chat/upload/getUrl | chatUpload.js
  5164. POST /checkIsNeedCheck | login.js
  5165. POST /getWechatQrCode | login.js
  5166. POST /login | login.js
  5167. === OTHER ===
  5168. GET /his/doctor/getWxaCodeUnLimit | doctor.js | code=401 msg=获取用户ID异常
  5169. GET /store/userAddress/export | userAddress.js | code=401 msg=获取用户信息异常
  5170. POST /companyWorkflow/externalApi/saveOrUpdate | externalApi.js | code=401 msg=获取用户信息异常
  5171. POST /qw/user/getQwCodeUrl | user.js | 请求被中止: 操作超时。
  5172. POST /store/inquiryOrder/refundOrder | inquiryOrder.js | code=401 msg=获取用户信息异常
  5173. POST /workflow/ai-generator/generate | workflowLobster.js | 请求被中止: 操作超时。
  5174. PUT /course/period/courseMove | userCoursePeriod.js | code=400 msg=参数不合法
  5175. PUT /store/storeOrder/getGoods | storeOrder.js | code=401 msg=获取用户信息异常
  5176. PUT /store/storeOrder/sendGoods | storeOrder.js | code=401 msg=获取用户信息异常