123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396 |
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ed70273089e051b4faf064a16e643ed8', '0', '危险化学品重大危险源', '3', '3', NULL, NULL, '2024-03-05 09:05:11.689845', '1', '2024-03-05 09:05:11.689845', '1', 1, '320214', NULL, '2', '0101000020B0110000DB9580A38F548341CD20027F539C4A41', '无锡华润燃气有限公司', '南京赛福特安全评价认证有限公司', NULL, NULL, '危险化学品重大危险源', 'ed70273089e051b4faf064a16e643ed8', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d214f8190066d284c658d03f74c11e97', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.703993', '1', '2024-03-05 09:05:11.703993', '1', 1, '320214', NULL, '2', '0101000020B011000027EEBC12385483413E248C56FE994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'd214f8190066d284c658d03f74c11e97', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_bb8aa4e217c63ba4b6b1bae8db6274a4', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.708484', '1', '2024-03-05 09:05:11.708484', '1', 1, '320211', NULL, '2', '0101000020B01100006CD90152EA538341853DF6FBB99C4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'bb8aa4e217c63ba4b6b1bae8db6274a4', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8350a1a3fc2bc6600fca5e8674c43cb9', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.712872', '1', '2024-03-05 09:05:11.712872', '1', 1, '320211', NULL, '2', '0101000020B01100006787982EC0528341E9D13CFB80EC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '8350a1a3fc2bc6600fca5e8674c43cb9', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_2cb15213067b4a92c5b3767c15eacdb7', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.717316', '1', '2024-03-05 09:05:11.717316', '1', 1, '320211', NULL, '2', '0101000020B0110000B1BD0BDECB538341F2C4BC561E9B4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '2cb15213067b4a92c5b3767c15eacdb7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_0ce98ada1cd9e0554f37769d940038d3', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.721774', '1', '2024-03-05 09:05:11.721774', '1', 1, '320211', NULL, '2', '0101000020B011000093CC9A22BF538341F948B5A23A9A4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '0ce98ada1cd9e0554f37769d940038d3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_e8b23d7e973d4374b23083c4667e6027', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.728684', '1', '2024-03-05 09:05:11.728684', '1', 1, '320211', NULL, '2', '0101000020B01100001B8439FD10548341C69A1189169D4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'e8b23d7e973d4374b23083c4667e6027', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f9adc34f8f01b36cf4430f16188bbdfe', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.732784', '1', '2024-03-05 09:05:11.732784', '1', 1, '320211', NULL, '2', '0101000020B011000076ED3B9B7A53834142E25089839A4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'f9adc34f8f01b36cf4430f16188bbdfe', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_481ba3f76fe991e01efd07743398dae1', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.737501', '1', '2024-03-05 09:05:11.737501', '1', 1, '320211', NULL, '2', '0101000020B0110000381D0AF09E538341698B14360B9B4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '481ba3f76fe991e01efd07743398dae1', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f84429d9a57558b05e1e93ab9882d1df', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.741568', '1', '2024-03-05 09:05:11.741568', '1', 1, '320211', NULL, '2', '0101000020B011000031C300A574538341127761C9FD974A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'f84429d9a57558b05e1e93ab9882d1df', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_32204b0c30baea4d78953f094f29c3cc', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.746097', '1', '2024-03-05 09:05:11.746097', '1', 1, '320211', NULL, '2', '0101000020B0110000A8E01DF64F53834139F5CE9D21994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '32204b0c30baea4d78953f094f29c3cc', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_7ae2fd26c3c389426a9d382cc3b9d9a3', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.750213', '1', '2024-03-05 09:05:11.750213', '1', 1, '320211', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '7ae2fd26c3c389426a9d382cc3b9d9a3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5a0effcf0e536ad10c78a28b3a62b367', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.754278', '1', '2024-03-05 09:05:11.754278', '1', 1, '320211', NULL, '2', '0101000020B01100007DCD43563253834198C3DDEC689C4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '5a0effcf0e536ad10c78a28b3a62b367', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_9d306b2d79bc5a5a1faac2e88b9a0f07', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.758517', '1', '2024-03-05 09:05:11.758517', '1', 1, '320211', NULL, '2', '0101000020B0110000C89E353068538341FFA77816F6914A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '9d306b2d79bc5a5a1faac2e88b9a0f07', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d12ebf59fbe82cf5946100ed5f985cbe', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.762644', '1', '2024-03-05 09:05:11.762644', '1', 1, '320214', NULL, '2', '0101000020B01100002DDC26F7215483419E45729FEC9D4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'd12ebf59fbe82cf5946100ed5f985cbe', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5c63668b370c9bb0b36d2980f42424d0', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.767096', '1', '2024-03-05 09:05:11.767096', '1', 1, '320214', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '5c63668b370c9bb0b36d2980f42424d0', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_7b91bef8e96c1a8d5c16ada6c29bae71', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.77148', '1', '2024-03-05 09:05:11.77148', '1', 1, '320214', NULL, '2', '0101000020B01100004C176A47B554834114523C5214AD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '7b91bef8e96c1a8d5c16ada6c29bae71', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_fab4faa075aa56b70f1f93e2a7429782', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.775419', '1', '2024-03-05 09:05:11.775419', '1', 1, '320214', NULL, '2', '0101000020B011000085562D6BAE548341D7BBF9B884A64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'fab4faa075aa56b70f1f93e2a7429782', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_291b5d5ded00ad50aa3611e3b58898fc', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.77943', '1', '2024-03-05 09:05:11.77943', '1', 1, '320214', NULL, '2', '0101000020B011000030177F4417558341E7B7334517954A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '291b5d5ded00ad50aa3611e3b58898fc', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_efbcaaf30aa91759f23b67f17c860205', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.783469', '1', '2024-03-05 09:05:11.783469', '1', 1, '320214', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', 'efbcaaf30aa91759f23b67f17c860205', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_028383d57106077ee6a8cca156230baf', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.788149', '1', '2024-03-05 09:05:11.788149', '1', 1, '320214', NULL, '2', '0101000020B01100007062D63CA05483416F289AF2E8A64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '028383d57106077ee6a8cca156230baf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_38c7bdcb6e68472901b8e4fca05a9b6c', '0', '高压管网', '3', '3', NULL, NULL, '2024-03-05 09:05:11.792416', '1', '2024-03-05 09:05:11.792416', '1', 1, '320214', NULL, '2', '0101000020B0110000EF88078F18548341609D9ED699A34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '高压管网', '38c7bdcb6e68472901b8e4fca05a9b6c', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_bb2f8f1bbea3495d08beae36adf2fcbf', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.796241', '1', '2024-03-05 09:05:11.796241', '1', 1, '320211', NULL, '2', '0101000020B01100009CA67BDCB6528341A727A88CFEA74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'bb2f8f1bbea3495d08beae36adf2fcbf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_07c8ed8f85b8bab68f2df5205fd1a16d', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.800189', '1', '2024-03-05 09:05:11.800189', '1', 1, '320211', NULL, '2', '0101000020B0110000F5973ABCE152834122C3DC2EA1A74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '07c8ed8f85b8bab68f2df5205fd1a16d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_fa01c00dd497cb28cf0eed83ed96de82', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.804129', '1', '2024-03-05 09:05:11.804129', '1', 1, '320211', NULL, '2', '0101000020B0110000298595B31C538341049582D35A984A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'fa01c00dd497cb28cf0eed83ed96de82', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d8153819f4cc31a02e68108e242cfeb1', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.80875', '1', '2024-03-05 09:05:11.80875', '1', 1, '320206', NULL, '2', '0101000020B01100001690FE197E538341FB649329E9C14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'd8153819f4cc31a02e68108e242cfeb1', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_b499d480992e96299512e5c1b1f9e3e2', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.813504', '1', '2024-03-05 09:05:11.813504', '1', 1, '320206', NULL, '2', '0101000020B01100007B9E7A8370538341DD18C90A8BC04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'b499d480992e96299512e5c1b1f9e3e2', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_03a8b522ac45bf4d6da1be4046a4dee2', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.817793', '1', '2024-03-05 09:05:11.817793', '1', 1, '320299', NULL, '2', '0101000020B01100001B82FD1A4A538341500F0A27B4A14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '03a8b522ac45bf4d6da1be4046a4dee2', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_20', '1', '雨水液位计/经开区/观顺道海岸中心门口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.817948', '1', '2024-03-05 09:05:15.817948', '1', 1, '320299', NULL, '1', '0101000020B011000094A1846449538341D95594105A974A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/观顺道海岸中心门口', '20', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_21', '1', '雨水液位计/经开区/观山路与兴梁道交界上游检查井', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.821871', '1', '2024-03-05 09:05:15.821871', '1', 1, '320299', NULL, '1', '0101000020B0110000B11363738953834138289D458F984A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/观山路与兴梁道交界上游检查井', '21', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_22', '1', '雨水液位计/经开区/观顺道震泽路交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.825534', '1', '2024-03-05 09:05:15.825534', '1', 1, '320299', NULL, '1', '0101000020B0110000FB43BB714E5383417FFF2A66E6934A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/观顺道震泽路交叉口', '22', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_23', '1', '雨水液位计/经开区/金融六街路口盛捷服务公寓门口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.82945', '1', '2024-03-05 09:05:15.82945', '1', 1, '320299', NULL, '1', '0101000020B0110000C181FC085D538341B0EFE2EAA1954A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/金融六街路口盛捷服务公寓门口', '23', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_24', '1', '雨水液位计/经开区/观山路与观顺道交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.833189', '1', '2024-03-05 09:05:15.833189', '1', 1, '320299', NULL, '1', '0101000020B0110000EA73633D4C538341F5622349D0974A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/观山路与观顺道交叉口', '24', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_25', '1', '雨水液位计/经开区/南湖大道和畅路交叉口南侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.837035', '1', '2024-03-05 09:05:15.837035', '1', 1, '320299', NULL, '1', '0101000020B0110000491E3EFD97538341B64105A4F3974A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/南湖大道和畅路交叉口南侧', '25', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_26', '1', '雨水液位计/经开区/吴都路和五湖大道交叉口北侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.840697', '1', '2024-03-05 09:05:15.840697', '1', 1, '320299', NULL, '1', '0101000020B01100001CA464562D538341FB8FFDBA9C964A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/吴都路和五湖大道交叉口北侧', '26', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_27', '1', '雨水液位计/经开区/信诚道观山路南八方汇', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.84566', '1', '2024-03-05 09:05:15.84566', '1', 1, '320299', NULL, '1', '0101000020B011000031963AFD3C5383418B048846CD974A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/信诚道观山路南八方汇', '27', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_2', '1', '通扬路滨水路', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.849655', '1', '2024-03-05 09:05:15.849655', '1', 1, '320213', NULL, '1', '0101000020B0110000655FF3C89A53834194DD968D25A24A41', NULL, NULL, NULL, NULL, '通扬路滨水路', '2', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_671', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.447822', '1', '2024-03-05 09:05:19.447822', '1', 1, '320213', NULL, '1', '0101000020B01100008D1D1B71905383418146E954C1A04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏位置:由东向西 LD186LD184LD174,栏杆下方水泥破损', '671', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_672', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.451893', '1', '2024-03-05 09:05:19.451893', '1', 1, '320213', NULL, '1', '0101000020B01100005C6DC5CE8F538341D9E7F8A6C3A04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,两侧平石破碎', '672', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_673', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.455938', '1', '2024-03-05 09:05:19.455938', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏位置:由东向西运河西一侧LD112,大理石松动', '673', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_675', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.460892', '1', '2024-03-05 09:05:19.460892', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏类型:其他,粗骨料外露', '675', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_676', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.466895', '1', '2024-03-05 09:05:19.466895', '1', 1, '320213', NULL, '1', '0101000020B0110000A518A7078652834150363AE1E1B24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏位置:钱荣路高架B匝道由南向北第三条伸缩缝右侧,伸缩缝钢板缺失', '676', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_677', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.470668', '1', '2024-03-05 09:05:19.470668', '1', 1, '320213', NULL, '1', '0101000020B0110000A518A7078652834150363AE1E1B24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏类型:破损,防撞墙开裂破损,损伤长度约80cm', '677', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_678', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.474561', '1', '2024-03-05 09:05:19.474561', '1', 1, '320213', NULL, '1', '0101000020B0110000A518A7078652834150363AE1E1B24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:中,防撞墙锈胀露筋,损伤面积约6个平方', '678', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_679', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.478525', '1', '2024-03-05 09:05:19.478525', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏位置:钱荣路高架由南向北起点处,沥青坑塘,损伤面积约1个平方', '679', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_680', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.482859', '1', '2024-03-05 09:05:19.482859', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:重,防撞墙锈胀露筋,损伤面积约14个平方', '680', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_681', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.486919', '1', '2024-03-05 09:05:19.486919', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏类型:其他,落水管缺失', '681', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10178', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.491432', '1', '2024-03-05 09:05:19.491432', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:南侧桥头人行道沥青路面横向裂缝一条2m,局部轻微', '10178', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10179', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.495537', '1', '2024-03-05 09:05:19.495537', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:破损,落水管脱落', '10179', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10180', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.499385', '1', '2024-03-05 09:05:19.499385', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,广北大桥由东向西,桥面大理石砖松动翘起共五块', '10180', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_164', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.503721', '1', '2024-03-05 09:05:19.503721', '1', 1, '320213', NULL, '1', '0101000020B01100001283409E5A528341C5E61C3270B24A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:,伸缩缝堵塞', '164', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1134', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.507285', '1', '2024-03-05 09:05:19.507285', '1', 1, '320213', NULL, '1', '0101000020B01100004C54AF92CF538341D7A337D864AB4A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '1134', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1016', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.511101', '1', '2024-03-05 09:05:19.511101', '1', 1, '320213', NULL, '1', '0101000020B01100009F707D009553834128662F8501A44A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:轻,道板松动', '1016', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_21', '5', '缺陷-锚头开锚', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.515095', '1', '2024-03-05 09:05:19.515095', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '由于检测条件等各方面原因,共选取了 3 根缆索下锚头进行了抽样开锚检查。
- 从抽样的锚头外观检查结果来看,主要病害为锚杯锈蚀,封锚处有少量积水、漏油。', '21', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1103', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.51887', '1', '2024-03-05 09:05:19.51887', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏类型:损坏,广北大桥由西向东,桥面道板砖开裂破损三块', '1103', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_985', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.522594', '1', '2024-03-05 09:05:19.522594', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:梁溪路下穿通道桥由北向南人行道处,道板砖破损2块', '985', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1017', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.526364', '1', '2024-03-05 09:05:19.526364', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏类型:其他,两侧防撞墙油漆剥落', '1017', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1018', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.530252', '1', '2024-03-05 09:05:19.530252', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西LD110处,沥青网裂', '1018', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_3', '1', '山水东路', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.854293', '1', '2024-03-05 09:05:15.854293', '1', 1, '320211', NULL, '1', '0101000020B011000043CF07CBB0528341861339C7059B4A41', NULL, NULL, NULL, NULL, '山水东路', '3', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_28', '1', '雨水液位计/经开区/吴都路南宝能城天桥南侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.858126', '1', '2024-03-05 09:05:15.858126', '1', 1, '320299', NULL, '1', '0101000020B011000053223BA2605383418C5DDC30D5954A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/吴都路南宝能城天桥南侧', '28', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_29', '1', '雨水液位计/经开区/瑞景道观山实验幼儿园门口北侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.862249', '1', '2024-03-05 09:05:15.862249', '1', 1, '320299', NULL, '1', '0101000020B0110000AA8885A8A5538341BDAE01A9A0994A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/瑞景道观山实验幼儿园门口北侧', '29', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_30', '1', '雨水液位计/经开区/万顺道和周新路交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.866202', '1', '2024-03-05 09:05:15.866202', '1', 1, '320299', NULL, '1', '0101000020B0110000BEC85E3012538341E99B4C32E69A4A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/万顺道和周新路交叉口', '30', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_31', '1', '雨水液位计/经开区/南霞路与兴梁道交界积水点上游检查井', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.87043', '1', '2024-03-05 09:05:15.87043', '1', 1, '320299', NULL, '1', '0101000020B0110000B79D7E5683538341CFA8B5DED9994A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/南霞路与兴梁道交界积水点上游检查井', '31', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_32', '1', '雨水液位计/经开区/观山路和立信大道交叉口北侧绿化带上', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.87431', '1', '2024-03-05 09:05:15.87431', '1', 1, '320299', NULL, '1', '0101000020B011000071B45CE451538341C231FD2E2F984A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/观山路和立信大道交叉口北侧绿化带上', '32', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_33', '1', '雨水液位计/经开区/市民中心正大门(上游检查井)', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.878268', '1', '2024-03-05 09:05:15.878268', '1', 1, '320299', NULL, '1', '0101000020B0110000AD66DB536A538341779D5EF876984A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/市民中心正大门(上游检查井)', '33', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_34', '1', '雨水液位计/经开区/和鸣路和立信大道交叉口辅道绿化带', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.882033', '1', '2024-03-05 09:05:15.882033', '1', 1, '320299', NULL, '1', '0101000020B01100002F6515B458538341E716973554954A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/和鸣路和立信大道交叉口辅道绿化带', '34', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_35', '1', '雨水液位计/经开区/吴都路和立德道交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.886311', '1', '2024-03-05 09:05:15.886311', '1', 1, '320299', NULL, '1', '0101000020B0110000DC52EB0A5F5383419495BEA878964A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/吴都路和立德道交叉口', '35', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_36', '1', '雨水液位计/经开区/五湖大道和新源路交叉口北侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.89004', '1', '2024-03-05 09:05:15.89004', '1', 1, '320299', NULL, '1', '0101000020B0110000D325F4172A538341342D0E0893994A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/五湖大道和新源路交叉口北侧', '36', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_37', '1', '雨水液位计/经开区/德先路和立德道交叉口南侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.893786', '1', '2024-03-05 09:05:15.893786', '1', 1, '320299', NULL, '1', '0101000020B011000036BC9DEB57538341ECE640322F994A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/德先路和立德道交叉口南侧', '37', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_38', '1', '污水液位计/经开区/吴都路中海凤凰璟园北侧JW3', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.898535', '1', '2024-03-05 09:05:15.898535', '1', 1, '320299', NULL, '1', '0101000020B011000029C255C295538341F04F9961FC964A41', NULL, NULL, NULL, NULL, '污水液位计/经开区/吴都路中海凤凰璟园北侧JW3', '38', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_39', '1', '雨水液位计/经开区/清舒道和风路交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.902207', '1', '2024-03-05 09:05:15.902207', '1', 1, '320299', NULL, '1', '0101000020B011000057A355F1865383412C790C0B93954A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/清舒道和风路交叉口', '39', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_40', '1', '雨水液位计/经开区/具区路南湖大道交叉口(上游检查井)', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.906722', '1', '2024-03-05 09:05:15.906722', '1', 1, '320299', NULL, '1', '0101000020B0110000D132E7DCAB5383411C87C8BD06934A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/具区路南湖大道交叉口(上游检查井)', '40', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_41', '1', '污水液位计/经开区/清舒道具区路交叉口/清舒道JW2', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.910472', '1', '2024-03-05 09:05:15.910472', '1', 1, '320299', NULL, '1', '0101000020B0110000740FB8AA94538341D5F7990B2E924A41', NULL, NULL, NULL, NULL, '污水液位计/经开区/清舒道具区路交叉口/清舒道JW2', '41', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_42', '1', '雨水液位计/经开区/南湖大道清源路交叉口上游检查井', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.914067', '1', '2024-03-05 09:05:15.914067', '1', 1, '320299', NULL, '1', '0101000020B011000018451C10A7538341B7EDB656C9934A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/南湖大道清源路交叉口上游检查井', '42', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_43', '1', '雨水液位计/经开区/瑞景道吴都路交叉口上游检查井', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.917955', '1', '2024-03-05 09:05:15.917955', '1', 1, '320299', NULL, '1', '0101000020B0110000C60FF25FAF5383417734AFED68974A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/瑞景道吴都路交叉口上游检查井', '43', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_44', '1', '污水液位计/经开区/观山路瑞景道交叉口JW4', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.921928', '1', '2024-03-05 09:05:15.921928', '1', 1, '320299', NULL, '1', '0101000020B01100006831F201AA5383411D4F99EA04994A41', NULL, NULL, NULL, NULL, '污水液位计/经开区/观山路瑞景道交叉口JW4', '44', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_45', '1', '雨水液位计/经开区/震泽路与丰润道交叉口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.926023', '1', '2024-03-05 09:05:15.926023', '1', 1, '320299', NULL, '1', '0101000020B0110000FD1863AC6D5383419B7A1D334F944A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/震泽路与丰润道交叉口', '45', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_46', '1', '雨水液位计/经开区/南蒋路立德道交叉口南侧', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.929913', '1', '2024-03-05 09:05:15.929913', '1', 1, '320299', NULL, '1', '0101000020B0110000BEF32DF65953834110A96FD878984A41', NULL, NULL, NULL, NULL, '雨水液位计/经开区/南蒋路立德道交叉口南侧', '46', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_47', '1', '污水液位计/经开区/贡湖大道与具区路交界/具区路JW1', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.933962', '1', '2024-03-05 09:05:15.933962', '1', 1, '320299', NULL, '1', '0101000020B0110000C0A35C499E538341C8F3C9856A924A41', NULL, NULL, NULL, NULL, '污水液位计/经开区/贡湖大道与具区路交界/具区路JW1', '47', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_478', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.956005', '1', '2024-03-05 09:05:15.956005', '1', 1, '320211', NULL, '1', '0102000020B0110000020000008A92FA2A945383417F1785DA3DA84A41FC109C4C96538341CE8D4E5908A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '478', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_557', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.960415', '1', '2024-03-05 09:05:15.960415', '1', 1, '320211', NULL, '1', '0102000020B01100000A000000B8D5CCC93A538341F7495AEC8FB24A412B30A7073D538341442E21DE88B24A416E88BA613F538341E00EA57489B24A418D983FF441538341E7076E4692B24A412EE9FD9E465383418DBC8180A4B24A41458D2D8649538341385268D9B0B24A41A22841DE4C5383417BAE1324B6B24A416B5609B05553834194C8D2C8BDB24A419232315263538341CBC48F6DC5B24A419E1689D5765383413F7DE602D0B24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '557', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_589', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.964493', '1', '2024-03-05 09:05:15.964493', '1', 1, '320211', NULL, '1', '0102000020B0110000020000006F7C391D0653834162C4451B94B24A41AFF6562503538341815CB8EE6EB24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '589', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_559', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.96851', '1', '2024-03-05 09:05:15.96851', '1', 1, '320211', NULL, '1', '0102000020B01100000800000019018F7D9B538341CDA0BB1C89A84A414FECCEDE9A5383414ADF44898EA84A411D7628669A5383414C5D894190A84A41E01253FC9953834158B6EFDB8FA84A41B0E8F0BE995383414BDF44898EA84A41D77ACA85995383417A9111BE8DA84A4188F4058E97538341D3A9DB1A79A84A41615F30A7955383412E1B0C1264A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '559', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_574', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.972473', '1', '2024-03-05 09:05:15.972473', '1', 1, '320211', NULL, '1', '0102000020B011000004000000E7654C28A85383413C73234BB7B04A41A61B2455AB5383412A119DB2C7B04A41FBE3D970AD538341513C0531D5B04A41C5503CAAAF538341FB547EA0E1B04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '574', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_542', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.976581', '1', '2024-03-05 09:05:15.976581', '1', 1, '320211', NULL, '1', '0102000020B011000005000000DD115EA95A54834184FF8090CEA84A417DF1538455548341E4EC1224E8A84A414913CF6E545483416D69F78CECA84A41F8DA65F24D5483413F4D45E5FDA84A419FFF222E4A5483416BFB9A8A00A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '542', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_514', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.981311', '1', '2024-03-05 09:05:15.981311', '1', 1, '320211', NULL, '1', '0102000020B0110000020000001F5A53586C53834129B8D385E2994A41A9D61679B8538341198CA94FFF9A4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '514', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_558', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.986872', '1', '2024-03-05 09:05:15.986872', '1', 1, '320211', NULL, '1', '0102000020B0110000060000009A26AB3B775383418A5C3EF4CCA64A4198E46BBB6D53834170E031B46DA64A415A4C9AED6B5383416A741F765AA64A41EDE7DF38695383412F4680C938A64A41F6FFD789675383411EA464EC1BA64A4117E961305A538341D455D13B62A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '558', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_555', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.990823', '1', '2024-03-05 09:05:15.990823', '1', 1, '320211', NULL, '1', '0102000020B011000004000000A09B7341BF538341B2226B35AFA04A4178057DF3BD538341DF10190D86A04A4107F74358BD53834126BC1D8A5FA04A41210DD2A2BB5383412D120D7AE89F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '555', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_454', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.994862', '1', '2024-03-05 09:05:15.994862', '1', 1, '320211', NULL, '1', '0102000020B0110000020000005C8343BE0F538341A6BFC5BC42A74A41612000751653834115E89D5191A74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '454', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_494', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.999037', '1', '2024-03-05 09:05:15.999037', '1', 1, '320211', NULL, '1', '0102000020B0110000020000007E73ABEC015383416356546854944A418934891001538341A6C54548E5934A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '494', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_524', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.002926', '1', '2024-03-05 09:05:16.002926', '1', 1, '320211', NULL, '1', '0102000020B011000002000000DF82C9878352834137F36F61E7B24A41739D6AAF825283419E969DA902B24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '524', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_552', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.007063', '1', '2024-03-05 09:05:16.007063', '1', 1, '320211', NULL, '1', '0102000020B011000028000000D9F48163175383417EE6427229B24A4127D75F8517538341B8C8209429B24A41BE5B7E7D1C53834165C73FA211B24A41CA15328220538341717B7095FEB14A415281872B2153834144CD1AF0FBB14A41FCF09CF42153834153FAE62CF7B14A417AC24D9A2253834163A3BDA5F4B14A41D8583011265383417E05443EE4B14A4100F101182A538341D0F4B8EDD0B14A41AE6F71602E5383415BBF4F7FBBB14A41FFB064CC2E538341F105C70ABAB14A41DBEBC6882F538341EEB0D7FFB6B14A4165A3606D305383415419E8F8B1B14A4132E471D9315383419C555E94A8B14A41BB883AAF32538341E46408F3A3B14A414620E1253453834145A5F51D97B14A4121CD293B35538341E46E5AD08AB14A41C2A4B68D35538341CF196BC587B14A41A64B50F33553834145827BBE82B14A41B8489D6337538341D9FEDE846CB14A416B92100F38538341D681CCAB61B14A41FB36D9E4385383414448ECAD4FB14A41114148B439538341D76BE9D939B14A4142842AB03A538341470E5D9D1CB14A41817F88903B538341A07C48E401B14A41DCE61D1A3C538341449F1331F5B04A41ADE80CAA3C53834121220158EAB04A41540CDE373D538341F974DD91DEB04A41FF5551E33D53834126814240D4B04A417EA1B31E3F538341E300EBB6C3B04A41BA639ED23F5383417AC6D8D9BAB04A4177AA5EEE41538341ACAE9149A5B04A411BA88D5E4253834164D02AB7A1B04A418DBA7C6D435383411E9DD4199BB04A415696C9DF435383410AEF7E7498B04A415B7323E245538341C53DE41E90B04A414F1DB967485383410476E32A8AB04A41F00A13E94A538341BD1938E084B04A41297793224E538341FA7A8C997DB04A4176621C145153834113D869C379B04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '552', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_423', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.011126', '1', '2024-03-05 09:05:16.011126', '1', 1, '320211', NULL, '1', '0102000020B01100000500000097303D6B16538341D0D5500A7AA44A4190AC172819538341AA5C366386A44A41EA89A6641E538341787CF6E79DA44A41860A0F6A20538341A0B7AB5FA4A44A412C327867265383414FCCAD3FB4A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '423', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_544', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.015927', '1', '2024-03-05 09:05:16.015927', '1', 1, '320211', NULL, '1', '0102000020B011000013000000C419BFB4425383410EADDE211BAB4A414EDA036946538341E21EBE2B27AB4A41236A55304A538341F76E04C836AB4A4179298D544C538341DDE45A613FAB4A410846EB324E538341491F6D3E48AB4A4141C2405B4F5383413A993A674DAB4A410F29F4E45053834137164D4058AB4A410B4274A35153834142BCB4C661AB4A41234CE37252538341676561FD70AB4A41CDC1A7EB5353834176DDCA6788AB4A410E84929F54538341F41366B594AB4A419B4EFD925553834181CB8A6BA8AB4A41B984BD2F57538341B8196D49CAAB4A41FA72F9B058538341D4373E3AEBAB4A41F4EA8EB95953834186F61E3001AC4A41A147D3735A538341B6F8310110AC4A410476F5D05A538341B5C7EE3418AC4A41ED4231545B53834161DCF01428AC4A4152BD97EC5B5383419EDE03E636AC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '544', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_469', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.020202', '1', '2024-03-05 09:05:16.020202', '1', 1, '320211', NULL, '1', '0102000020B0110000020000002DB5A925015383412E59B386109B4A415CDF0B6301538341F0CF3BFF0F9B4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '469', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_545', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.023962', '1', '2024-03-05 09:05:16.023962', '1', 1, '320211', NULL, '1', '0102000020B011000019000000B9E04B8842538341280645BC1AAB4A41C375D8DE40538341468C779315AB4A41646A5C7F3E5383413BBDBA5F0DAB4A41971C29B43D538341250F65BA0AAB4A41956571CF3B538341DFDB0E1D04AB4A419FE72C173A53834144990E2102AB4A41A056175038538341D955DC4509AB4A41962D7912365383413160DD3511AB4A4196EE563635538341165C66A614AB4A41364E4E803453834193C7BB4F15AB4A41C0E96B86325383412B37888812AB4A41AB3B16E12F538341952154C90BAB4A41129451EB2C538341E8DB0E1D04AB4A41CF59D12E2B53834189CD969DFFAA4A416ADF6A962A5383413AEBB87BFFAA4A411CAB9989295383414E990E2102AB4A41556A881D28538341FF5C98850BAB4A4107AB50F925538341395FAB561AAB4A41A643BB6F25538341CEF69A5D1FAB4A4144A3B2B92453834182E3796F27AB4A41B9375D102453834110CCE1F132AB4A41D4182EA222538341D485197955AB4A41D2FFADE321538341B6A1D79867AB4A41A9A9FAD8205383412D28B98283AB4A41354BC78E1F53834153C845BBA2AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '545', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_450', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.027835', '1', '2024-03-05 09:05:16.027835', '1', 1, '320211', NULL, '1', '0102000020B011000002000000399050CC7053834196436D4D2FAD4A41265678D39B538341FE4422F9FBAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '450', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_554', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.031913', '1', '2024-03-05 09:05:16.031913', '1', 1, '320211', NULL, '1', '0102000020B01100001B0000009CB9E56A44538341C774F5F81EA24A41FF207BF44453834103F9C3112CA24A41A4317B7345538341812F5F5F38A24A415EC183AA455383416D0293223DA24A41E23FAA624653834197D494064BA24A41A3E832584753834164F052265DA24A41DFAA1D0C485383419D1BBBA46AA24A412793AADD48538341B26B01417AA24A41B0FEFF8649538341B56658D286A24A411AD87B694A538341217027E397A24A41E1C699EA4A538341C2DA4AADA1A24A41B1DB59894B5383417F4C2AB7ADA24A41655E40614C538341929C7053BDA24A4195522B924E5383419D074330E8A24A4167A05E5D4F538341083A67EEF7A24A415AA60D0D505383414D40F14E03A34A41564AF4E251538341BEEF27E61DA34A4173BFD65B545383416E50F9D240A34A412FF3C56856538341BD240E885DA34A41D6CD4EDB585383419C37ACA97FA34A41019C97EE5A538341BC59F4299DA34A416E0629985D538341D6C83D96C4A34A4186755C615F53834110EFFCA5DEA34A4147BC1C7D61538341308F89DEFDA34A41BEE1DC9A6253834153B67ACD0EA44A41FDB8D07D67538341DFD3C8F159A44A41B7C06EBD68538341873DBADC6CA44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '554', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_596', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.035884', '1', '2024-03-05 09:05:16.035884', '1', 1, '320211', NULL, '1', '0102000020B011000007000000048A654B775383413FA26398FCAB4A413FA4D11573538341158006828CAB4A415328D9CA71538341EF262A3D6DAB4A4171299387705383416438CA0859AB4A415EC31E14705383414DAC463954AB4A4152560275675383419E2EEA701EAB4A411191757B5E538341FDEEB2C6DCAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '596', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_419', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.039848', '1', '2024-03-05 09:05:16.039848', '1', 1, '320211', NULL, '1', '0102000020B011000002000000A2DD0D122754834106835BB2E99E4A41331EACFD02548341791E8764F59C4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '419', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_435', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.044151', '1', '2024-03-05 09:05:16.044151', '1', 1, '320211', NULL, '1', '0102000020B0110000080000001DFFE201F2528341ED51B069A09E4A41C5EC1BFFED52834169559E78A19E4A4166B53A4CEC528341EBBF7FACA29E4A412AE587C9E9528341FC854114A59E4A41A02E3B0BD75283410DED5F1FB59E4A416C704245D3528341DADE2936B99E4A4114E93473D1528341540FCDD1BC9E4A411BA11B7CC1528341D49DDFD0159F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '435', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1019', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.534089', '1', '2024-03-05 09:05:19.534089', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏类型:其他,沥青坑塘', '1019', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_471', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.049509', '1', '2024-03-05 09:05:16.049509', '1', 1, '320211', NULL, '1', '0102000020B0110000020000008D4907B03C53834146E974A590AD4A41092E70AF41538341CBFCE1A7FBAD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '471', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_597', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.053537', '1', '2024-03-05 09:05:16.053537', '1', 1, '320211', NULL, '1', '0102000020B0110000100000005766492151538341EE0E451979B04A410AA860515853834127110E0B72B04A41434434386E538341E14D3DEC77B04A41C583777774538341E74D3DEC77B04A41BE2E10607B538341CB2C471979B04A4132E1F3CC7D538341433204DE70B04A419CAF82907F538341BF58B77567B04A41ACEEB179815383419F452FFF56B04A413731B27583538341F79752F33BB04A41C152BC9E86538341799ABE8F0AB04A412F9D1B75885383413DB3A675E8AF4A4144DC4A5E8A5383410BDAFCB7B4AF4A412E162FCB8C5383415A95629463AF4A41E950D0EC8E538341F9D375DB07AF4A41BA2101C69853834126CBFE9F82AD4A41FABA4D3A9C5383415D2E9F37FAAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '597', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_417', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.058268', '1', '2024-03-05 09:05:16.058268', '1', 1, '320211', NULL, '1', '0102000020B01100000A0000001DBC9717C65283419D79FC7C9C8E4A410EF299F5D652834145C787D4338F4A41F1E9ABD6DD528341C2634C90778F4A41C988571DE5528341AEB867E1C58F4A41CE9E244CE75283419E29150CDB8F4A412E58ADC0E852834115E947BFE78F4A415391697DEC5283414731805EFE8F4A41EC94479DED5283414804B42103904A41F8F65807F052834160853D8A0A904A41BAF45BD90653834164AC540B41904A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '417', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_601', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.062583', '1', '2024-03-05 09:05:16.062583', '1', 1, '320211', NULL, '1', '0102000020B011000007000000050EAE708552834186FA5976F3A34A41EB7E0CD082528341F63D1DDB1AA44A41FA4C0C538152834191FAFAE635A44A41CB43E61780528341DE45B22E54A44A41704D873F7F528341907473B36BA44A41E411E69A7E528341B8055AFC7FA44A41821B87C27D528341EFBC7A43A3A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '601', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_570', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.066843', '1', '2024-03-05 09:05:16.066843', '1', 1, '320211', NULL, '1', '0102000020B0110000080000009879BD4D3653834158F6763C7DA64A41BAF8C505365383416C7DDBF26EA64A411B0E68A435538341417F3FB15CA64A41318D705C35538341C59D936E53A64A41D138ACE1345383418793927E4BA64A41A9FB7895345383411FB2E63B42A64A4106D2F857335383419E5328202EA64A41C65856BF3053834131A99AF706A64A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '570', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_459', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.070693', '1', '2024-03-05 09:05:16.070693', '1', 1, '320211', NULL, '1', '0102000020B01100000200000015BC74E503538341FDC5778D41984A41F1CA85D4035383412F628D3664984A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '459', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_560', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.074524', '1', '2024-03-05 09:05:16.074524', '1', 1, '320211', NULL, '1', '0102000020B01100002100000018B6C5B195538341FF0FD94265A84A41D484F0C496538341148DEB1B70A84A41051417FC9753834131B8539A7DA84A415FE0707F99538341A643DEF28CA84A4120961BD49953834101A400CD8EA84A410F17131C9A538341E421458590A84A4142A08AA39A538341F97AAB1F90A84A4174DDBDEF9A53834110FD66678EA84A410B8FA8249B538341197F22AF8CA84A41CF4453799B53834187BEDDFA88A84A41DFEFACFE9B5383412F09CC1584A84A41BA3DE0C99C538341DBD1FEE880A84A417E192D3C9D538341380D43A580A84A414EF579AE9D53834135B4DC0A81A84A418EB764629E5383412C3221C382A84A419A294BBB9E5383418E4410D283A84A41EF7D0F369F5383412D05558687A84A41E65D1CC89F538341BE1E00D58AA84A41E870EDD69F538341A36C33A08BA84A41496D0FB79E538341784542B17AA84A41A86FE0469E538341F488748C73A84A4114B846629D538341381B0C1264A84A41F5B386429D538341043DA57F60A84A41355DF1379D5383414E23FA305DA84A41E97A13169D5383414DAA5EE74EA84A41176C02279D53834109535C0B3DA84A413E4A20299D53834178BFE39334A84A41196C02279D5383419AF026602CA84A412E374F1A9D538341AFF8147F25A84A412FFEDBED9C538341E7AE584321A84A414C90B5B49C53834172A0E0C31CA84A419F6CE4269C53834194A8CEE215A84A41DC1253FC99538341F1425487FFA74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '560', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_535', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.078549', '1', '2024-03-05 09:05:16.078549', '1', 1, '320211', NULL, '1', '0102000020B01100000700000095F2EBAB33538341C566B6A0D0AE4A417466C194345383415A8994B6D6AE4A4178F127AC355383416B37EA5BD9AE4A41349AB0A13653834178ACFB4CD8AE4A417B7E0F743E5383417BE790F6B6AE4A41826E3A8540538341BE62296EAEAE4A41BD0908AC465383417C1447908CAE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '535', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_576', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.082594', '1', '2024-03-05 09:05:16.082594', '1', 1, '320211', NULL, '1', '0102000020B011000007000000D31908EDA753834131C5CDA5B4B04A4129D39061A9538341B758461DBDB04A418656A2C9AC538341731B9EA2CFB04A4137312B3CAF538341FEA628FBDEB04A41FF713CA8B05383419D15C354E5B04A41E757F8E9B1538341F24C9081E8B04A412A123E0FBD5383412DC83E9C05B14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '576', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_510', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.08629', '1', '2024-03-05 09:05:16.08629', '1', 1, '320211', NULL, '1', '0102000020B011000004000000913BC81C475383410E225E6537A54A41D7C385D1465383418FF666A230A54A411C32A2604653834128CB6FDF29A54A41F456DA07415383414FD148E8DEA44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '510', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_561', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.089989', '1', '2024-03-05 09:05:16.089989', '1', 1, '320211', NULL, '1', '0102000020B01100000200000055BB5F74B95383419AB51C28E7A94A415B1D71DEBB538341A1A753BB03AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '561', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_562', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.093844', '1', '2024-03-05 09:05:16.093844', '1', 1, '320211', NULL, '1', '0102000020B01100002C0000000019873DA9528341E0F0267012AF4A41E6AC4F94A95283413FA6385517AF4A41CC2D47DCA952834169849FE71AAF4A41007E4B37AA528341F417185F23AF4A413DA5FAE4AB528341AB4B1D0F4BAF4A41016154E9AC528341DF9A31CC63AF4A4158B51864AD52834129A1BB2C6FAF4A4183BF8733AE5283411994249F82AF4A41216EBFD8AF5283418B3EB2C7A9AF4A416530AA8CB052834125FA4D0DBAAF4A419580AEE7B0528341515282C8C2AF4A41DB556AAAB1528341F0BB73B3D5AF4A41D6AD0C45B3528341BA44686E00B04A412308806FB45283417AA9B0EA1FB04A41DAB00865B552834168ED91D839B04A412D6A91D9B65283414B2CCA5760B04A41255D6F7AB75283411F71DD2471B04A412AE8D591B8528341A8CE69618EB04A41EBB600A5B9528341A1673A5AABB04A419139E77CBA5283417AAF92D7C1B04A41DB21744EBB52834161C7D967D7B04A41A71092CFBB5283416899DB4BE5B04A4140B2A715BE528341B3024A6A22B14A4159895268BF528341D6CE700046B14A418718799FC05283411E9F0E2666B14A41F904C690C1528341C30012F27FB14A413D002471C2528341EB787B5C97B14A41FCF4F0A1C3528341CA114C55B4B14A412525028FC4528341A7003E38CBB14A414955137CC5528341330D52F9E1B14A41D8E60A43C652834183E2988DF5B14A4136ADB516C7528341DCE7F00E0AB24A41B1ACD316C852834113906B6622B24A4183464B1DC9528341D54AD5CC3BB24A41F5583A2CCA528341F0172E4256B24A41E0F2B132CB528341584920216FB24A41B89FFA47CC528341BD9FF01D8AB24A4133C5BA65CD5283417F08B029A6B24A41342A7F5FCE528341539E3B72BDB24A417EFF3A22CF52834157EA0A7FD0B24A413CF40753D0528341D24797BBEDB24A413EA51088D152834168A523F80AB34A412A78FBBAD2528341D3A9499A28B34A41C4C71D16D45283414581A3FF4AB34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '562', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_567', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.097705', '1', '2024-03-05 09:05:16.097705', '1', 1, '320211', NULL, '1', '0102000020B011000002000000E702940860538341DBEAC7BF7AAD4A4134D2A01B6053834104EE0C7080AD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '567', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_484', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.101735', '1', '2024-03-05 09:05:16.101735', '1', 1, '320211', NULL, '1', '0102000020B011000006000000792EA914EC538341310D26E7E89B4A41F55CE6B8E3538341F93C6B5DAA9B4A41F3F14ACAE2538341405E721CA49B4A412B9B80B5DD5383412C9119A7899B4A410952E5C6DC538341100596D7849B4A41C866705BD8538341DA72E1ED759B4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '484', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_511', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.105601', '1', '2024-03-05 09:05:16.105601', '1', 1, '320211', NULL, '1', '0102000020B011000006000000C943D6DB6F5383416D0C65EA8AAB4A4146995E566E53834130C2F99B65AB4A41FBB680346E538341FC52D6C163AB4A4111495AFB6D538341C024A47563AB4A418F16787E6D538341BCA65FBD61AB4A4156D648126B53834117E74CE854AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '511', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_473', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.109722', '1', '2024-03-05 09:05:16.109722', '1', 1, '320211', NULL, '1', '0102000020B011000004000000B7C1F2FD1E5383419C3843518DA84A41FA2115D8205383417D4F5802ACA84A41B9675A84285383415E9A7902AAA94A41E4AD38A02B5383412677572F2CAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '473', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_430', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.113736', '1', '2024-03-05 09:05:16.113736', '1', 1, '320211', NULL, '1', '0102000020B011000002000000CACCE43C605383410174C2F97FAD4A41324B4D367053834106BD0D472FAD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '430', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_489', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.117494', '1', '2024-03-05 09:05:16.117494', '1', 1, '320211', NULL, '1', '0102000020B011000002000000CAA1E07C43538341E7F2842733A44A412ABBA1F63C5383417C47535CDBA34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '489', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_503', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.121258', '1', '2024-03-05 09:05:16.121258', '1', 1, '320211', NULL, '1', '0102000020B01100000E00000097D50499385383413B8DF9148AAA4A41E4D0627939538341EBB0CAFA28AA4A41DFD06279395383419FAA409A1DAA4A4159A42FAC395383416F60D54BF8A94A41AB860DCE3953834101068EBFE0A94A41FB68EBEF39538341B3FF035FD5A94A4152E351883A53834136AF0EB0A4A94A41FDF351073B538341401BE7257BA94A41BB835A3E3B53834116F5271661A94A417E2634843B5383414B64453C3DA94A41519A096D3C538341B3FE9E9ADBA84A4157D37C993C538341A4850351CDA84A41C380A7AE3C5383412CC9352CC6A84A410A3DE3B23C538341966289F1B8A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '503', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_540', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.125123', '1', '2024-03-05 09:05:16.125123', '1', 1, '320211', NULL, '1', '0102000020B0110000020000007582219CED5283416553F54FBBA24A41DFB49C05ED52834167DFA333ABA34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '540', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_591', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.128957', '1', '2024-03-05 09:05:16.128957', '1', 1, '320211', NULL, '1', '0102000020B011000006000000081B532D1A538341BF266B0C24A84A4124A77D44195383415CCC23800CA84A411A3597EB185383413A74EFC403A84A417C4A398A18538341427CDDE3FCA74A41903EDB2A17538341F7CB746DEBA74A41B1DADA301453834118E6A288C4A74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '591', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_546', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.132833', '1', '2024-03-05 09:05:16.132833', '1', 1, '320211', NULL, '1', '0102000020B011000002000000DB86D05804538341C9D74E45ECAC4A41B40E7D911253834101204F366CAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '546', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_421', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.137232', '1', '2024-03-05 09:05:16.137232', '1', 1, '320211', NULL, '1', '0102000020B01100000C000000238C86EAA1538341DD3FE495A6A84A41590BAD6B9F5383413F2A7CC288A84A41CEA5F2B29E5383416C501E6E84A84A41AAD909CC9D538341D937E79480A84A4187906EDD9C538341E637E79480A84A414AD5E2529C538341E3FDA8FC82A84A411A9709D09B5383417A16E0D586A84A410231955C9B538341152F17AF8AA84A417D488DAB9A538341EC0875038FA84A41F359EA099A538341E30875038FA84A416DEE94609953834186B164A58BA84A4101A28CB5955383414DE8402965A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '421', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_515', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.141119', '1', '2024-03-05 09:05:16.141119', '1', 1, '320211', NULL, '1', '0102000020B01100000F0000002DE9B83ED952834136AE1AB92CB14A41E0728D2FDA52834194BE2FF4B6B04A41BBAE2E55DA528341E7B064429EB04A413A43D9ABD9528341554CAB0A78B04A4126AE4CD6D852834159E35CBA62B04A41C595CC19D7528341AFD7840B31B04A41F99B7BCBD45283412620B5B1ECAF4A41E2F4847DD35283414BC41709C6AF4A412D6276FBD0528341A0FD75A87BAF4A413E7FDE87CF528341C6237A2D51AF4A410AA78DB8CD52834139698F241DAF4A416DBB7584CC5283417C09780AFBAE4A41884DC757C252834121B63B18C7AD4A4189718E3BC25283411029DC45C3AD4A41E041DAB7C15283417C2E990ABBAD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '515', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_508', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.145551', '1', '2024-03-05 09:05:16.145551', '1', 1, '320211', NULL, '1', '0102000020B011000002000000642D21368F53834153486AB0E3A34A41F711A5DA88538341D7DCD8D983A34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '508', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_422', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.150068', '1', '2024-03-05 09:05:16.150068', '1', 1, '320211', NULL, '1', '0102000020B01100000B0000005F06EE3D775383411384A3EBD1A64A4104095E7A8153834157B3461A45A74A41813298848A538341FCEA66ACAAA74A4150506DE4975383416DA6BFC134A84A41C28E53B89E538341C822487D7AA84A417B2037299F5383413C4E3F4081A84A41D4FC4A75AC538341BA51A5A940A94A419F6AEC17AE5383411D3F373D5AA94A413F958DBCAE53834189F78DD264A94A418DA7E3DCB3538341C85A11BCA3A94A41D16AD1F3B853834193DD100FE2A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '422', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_599', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.153977', '1', '2024-03-05 09:05:16.153977', '1', 1, '320211', NULL, '1', '0102000020B01100000A0000008562C72A9B5383418A7ADCA855A04A41D29D1AC9C753834182B5FDC1BA9F4A413DF69E9CCA5383410FFDA62CB09F4A418364A747CE538341C322131F989F4A413A73902AD15383418E67902E7D9F4A41C6C1C607D35383411992970D679F4A416369450EE3538341356836E26F9E4A414A567438E553834176BCE42B4F9E4A41502D1F8BE65383412DC9E90A399E4A418D317708FD538341E4BB157FB09C4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '599', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_438', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.157785', '1', '2024-03-05 09:05:16.157785', '1', 1, '320211', NULL, '1', '0102000020B01100000200000002FE51BF42538341506E6F1FFDAD4A41A844C94A41538341AAA093DD0CAE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '438', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_532', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.162096', '1', '2024-03-05 09:05:16.162096', '1', 1, '320211', NULL, '1', '0102000020B011000010000000B2DAEE12DF538341EA4A52D505AB4A411C48306ED75383411E67A5ED36AB4A418272EC36CD538341823C0C5072AB4A4102821101C7538341DDA1823C98AB4A414A7453D3C3538341D133263AACAB4A41A7129FD2C15383414C1C74A2B5AB4A4135021ABFBF538341B9686138BBAB4A41D65F36CFBE538341A2267592BDAB4A419CBF19C3BD5383410038ADB0BCAB4A41E8446543BB5383411CAA9029B9AB4A418FBAD600B9538341B7E23894AEAB4A4132E1DFB4B653834111CE36B49EAB4A41F5F9AFCFB25383417BBB27D775AB4A414C94DEC8AC538341984E60B22EAB4A416F8CA43DA4538341217765DCC9AA4A416C8CA43DA4538341DB862391C9AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '532', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_592', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.165946', '1', '2024-03-05 09:05:16.165946', '1', 1, '320211', NULL, '1', '0102000020B0110000100000007218F7075A538341BCED7B568EB64A410B88C34057538341928D01F0F5B54A41FCB018EE5553834119F13C34B2B54A41DC800701555383411F9C21E363B54A41EAD96D9B545383414AF2EA40C7B44A41F4D96D9B54538341E5F7BEEFF9B34A4138BC4BBD5453834169C35B1A90B34A41D9800701555383410902B9404AB34A418CDD4BBB55538341EA77E39307B34A4127A207FF555383413725DB13C8B24A4139FB6D9955538341A9ADF47586B24A4139BC4BBD5453834187D74FBC30B24A41B5BCE42C505383412E576622CFAF4A4187B528ED4D538341C1FD242F63AF4A41B0167DA6465383417C467CA66DAE4A419DEAE24842538341CF36F7EE05AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '592', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_588', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.170363', '1', '2024-03-05 09:05:16.170363', '1', 1, '320211', NULL, '1', '0102000020B0110000060000006FE9A6784D538341A78B200D8BAB4A41E36BFB2F47538341E8F805BBC4AB4A410E1EC864465383417EB94A6FC8AB4A41F31A83B440538341A0E03B5ED9AB4A413A72FABE3F53834107F32A6DDAAB4A41EF50FAC03E5383413FA96E31D6AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '588', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_433', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.174393', '1', '2024-03-05 09:05:16.174393', '1', 1, '320211', NULL, '1', '0102000020B0110000090000000A8D1FA48A538341371A14378E9C4A41C1D70DBF85538341F504BBD0F39C4A4113E7B71D815383411CB6816C479D4A41AFEE0CCD7E53834117215449729D4A4117EB2EAD7D5383418F7F1265869D4A41C82C72F875538341688C2DC5549E4A414643D89673538341055EACDC8C9E4A411A2AC6B76B538341C72CC19C2B9F4A41D708C6B96A538341438B7FB83F9F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '433', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_427', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.178287', '1', '2024-03-05 09:05:16.178287', '1', 1, '320211', NULL, '1', '0102000020B01100000F0000003D4ED5F04B528341EBE9F7CC60B24A41E18C323E6A528341BF42D95555B24A41EA8116A76E528341AA6712844CB24A41DB5B77657C528341C86BF8891AB24A413C7436048752834143073F52F4B14A41BFF1E14C8D52834171E45337D9B14A41D6E1556F90528341FC1ECB57C5B14A4134DA00C09252834123CF1300AFB14A4163D0E42C955283410E839F0391B14A41BCC88F7D97528341EC9B87E96EB14A412BE073E89A528341F4A6A41D34B14A41415128649F528341349ACB9EEAB04A41B952039AA55283412285E43280B04A41EFE12950A9528341F4F1697642B04A4181789E68B152834178914C65D4AF4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '427', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_533a6400f594a7286ebbb7c2b91463a3', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.822172', '1', '2024-03-05 09:05:11.822172', '1', 1, '320299', NULL, '2', '0101000020B0110000ED93F0A061538341CE345029B0A14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '533a6400f594a7286ebbb7c2b91463a3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_50eb8b1cfa571d41ec63b1f15e3140bb', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.826625', '1', '2024-03-05 09:05:11.826625', '1', 1, '320299', NULL, '2', '0101000020B0110000E270998860538341B5AB6465C0A04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '50eb8b1cfa571d41ec63b1f15e3140bb', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_bb0be33f95242eb08d4e521bfe4a7ad4', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.830807', '1', '2024-03-05 09:05:11.830807', '1', 1, '320213', NULL, '2', '0101000020B0110000B382510A8653834169AF5D8429A74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'bb0be33f95242eb08d4e521bfe4a7ad4', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_4c99f9c7c8e0b4e5e7212dc6a5fa9296', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.834986', '1', '2024-03-05 09:05:11.834986', '1', 1, '320213', NULL, '2', '0101000020B0110000D6AC90F67E53834116F706A1D2A64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '4c99f9c7c8e0b4e5e7212dc6a5fa9296', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_cc3201e79f3e34002f1e07f19cbb798d', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.839681', '1', '2024-03-05 09:05:11.839681', '1', 1, '320213', NULL, '2', '0101000020B0110000D6AC90F67E53834116F706A1D2A64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'cc3201e79f3e34002f1e07f19cbb798d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f0db7960105497a1b10a9e1e44320c37', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.844707', '1', '2024-03-05 09:05:11.844707', '1', 1, '320213', NULL, '2', '0101000020B01100007EAC43817453834182857ED1F6A74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f0db7960105497a1b10a9e1e44320c37', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ec5806441dd0f140da9f874a65ec11cd', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.849249', '1', '2024-03-05 09:05:11.849249', '1', 1, '320213', NULL, '2', '0101000020B0110000B63D6AD26A5383412D65BAD417A84A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'ec5806441dd0f140da9f874a65ec11cd', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8ed591b002728944a9855b59b313c465', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.853378', '1', '2024-03-05 09:05:11.853378', '1', 1, '320213', NULL, '2', '0101000020B0110000283C02F493538341D2B88B688FA54A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '8ed591b002728944a9855b59b313c465', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_05a5f4b518629c3c7e1bf92e3591fad8', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.857785', '1', '2024-03-05 09:05:11.857785', '1', 1, '320213', NULL, '2', '0101000020B0110000DF746268D3528341AEB9024AC8EB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '05a5f4b518629c3c7e1bf92e3591fad8', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f2dfbcb11f97d45903c668c9a4453917', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.86216', '1', '2024-03-05 09:05:11.86216', '1', 1, '320213', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f2dfbcb11f97d45903c668c9a4453917', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_de4e1e27bdd92987a7315342a1bea5bf', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.866676', '1', '2024-03-05 09:05:11.866676', '1', 1, '320213', NULL, '2', '0101000020B011000023A10AEF0E548341FEF1A3ECC0F44A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'de4e1e27bdd92987a7315342a1bea5bf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_c30d736906b1a9a849cc2185ed4b9690', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.870974', '1', '2024-03-05 09:05:11.870974', '1', 1, '320213', NULL, '2', '0101000020B01100009AC78FDB4B538341D203FCB0F9AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'c30d736906b1a9a849cc2185ed4b9690', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_7f8d520ac708312c190f135954606bbc', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.874842', '1', '2024-03-05 09:05:11.874842', '1', 1, '320213', NULL, '2', '0101000020B0110000E7A8AF96C64D8341EE4029B4E8804A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '7f8d520ac708312c190f135954606bbc', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_6001cc534bd8ceefffd892bfbc0d7fdc', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.879127', '1', '2024-03-05 09:05:11.879127', '1', 1, '320213', NULL, '2', '0101000020B01100002B1721506353834183B432A53DA34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '6001cc534bd8ceefffd892bfbc0d7fdc', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_547d894ac61bf0eab60de1bc1e243079', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.882872', '1', '2024-03-05 09:05:11.882872', '1', 1, '320213', NULL, '2', '0101000020B0110000C6A483FD705383411FA1C366ABA04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '547d894ac61bf0eab60de1bc1e243079', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_b56f65f39b0c66bd47338dbea3c4f8c7', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.886895', '1', '2024-03-05 09:05:11.886895', '1', 1, '320213', NULL, '2', '0101000020B011000011A89EBD3B538341712A49EC03A34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'b56f65f39b0c66bd47338dbea3c4f8c7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f74fef6903b849ed6154226c2f0e5820', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.891025', '1', '2024-03-05 09:05:11.891025', '1', 1, '320213', NULL, '2', '0101000020B0110000D0A7C42DAB5383414977DCE782AC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f74fef6903b849ed6154226c2f0e5820', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_2185b163c17a3b2a5ba8609821edefc9', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.894772', '1', '2024-03-05 09:05:11.894772', '1', 1, '320213', NULL, '2', '0101000020B011000029B199379D53834151D99F9E5AA84A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '2185b163c17a3b2a5ba8609821edefc9', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_2e10fb4d5e7860cd2ae1ef5be67fa05d', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.898642', '1', '2024-03-05 09:05:11.898642', '1', 1, '320213', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '2e10fb4d5e7860cd2ae1ef5be67fa05d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_01228baab61ca96340df329db36f19db', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.902321', '1', '2024-03-05 09:05:11.902321', '1', 1, '320213', NULL, '2', '0101000020B011000068E2716915538341970DE13264B04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '01228baab61ca96340df329db36f19db', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_4a799796923f846d745fe697fcee9d3a', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.906344', '1', '2024-03-05 09:05:11.906344', '1', 1, '320213', NULL, '2', '0101000020B01100007CDF96875B53834105EBA280D9AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '4a799796923f846d745fe697fcee9d3a', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8303b66fdbf92b7ca8f3338ee6191712', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.910818', '1', '2024-03-05 09:05:11.910818', '1', 1, '320213', NULL, '2', '0101000020B0110000DA637A5B4F538341429F2A9635A84A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '8303b66fdbf92b7ca8f3338ee6191712', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_1902910f65a9e5ee071b058896a7caca', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.914773', '1', '2024-03-05 09:05:11.914773', '1', 1, '320213', NULL, '2', '0101000020B0110000AE1AB131CD538341856220F0C3AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '1902910f65a9e5ee071b058896a7caca', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_4bb5ddad6ffee04409aadf8c946514c3', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.918597', '1', '2024-03-05 09:05:11.918597', '1', 1, '320213', NULL, '2', '0101000020B01100003CD874F4D75383414A5E2790FFAF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '4bb5ddad6ffee04409aadf8c946514c3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_eccc60024f8509d106cfdfcf88d50468', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.922549', '1', '2024-03-05 09:05:11.922549', '1', 1, '320213', NULL, '2', '0101000020B01100003918D921A2538341AD958305AAAF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'eccc60024f8509d106cfdfcf88d50468', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_07c32e93608a401b853ce42e4a51242b', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.92636', '1', '2024-03-05 09:05:11.92636', '1', 1, '320213', NULL, '2', '0101000020B01100001B951B7F755383417AA294C1AAAC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '07c32e93608a401b853ce42e4a51242b', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d99304c4b2519ff964a9b9d2cf9d3ecf', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.931477', '1', '2024-03-05 09:05:11.931477', '1', 1, '320213', NULL, '2', '0101000020B01100004631FDF852538341B5325C5043A54A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'd99304c4b2519ff964a9b9d2cf9d3ecf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ac79401caa0583403b64b03279b84941', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.935565', '1', '2024-03-05 09:05:11.935565', '1', 1, '320213', NULL, '2', '0101000020B0110000E66F72BA0B5383417324C038E0994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'ac79401caa0583403b64b03279b84941', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_39ffaf0ad5af9a003142b74383163600', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.939691', '1', '2024-03-05 09:05:11.939691', '1', 1, '320213', NULL, '2', '0101000020B01100004FDB87B78B5383415E3366C888AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '39ffaf0ad5af9a003142b74383163600', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f12dd6f7b2fdade0c63ea34017311bdc', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.943766', '1', '2024-03-05 09:05:11.943766', '1', 1, '320213', NULL, '2', '0101000020B0110000B5504BC8AA5383413AFB86B89EAD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f12dd6f7b2fdade0c63ea34017311bdc', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a66f1909000edf8a19b92802cc206d91', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.94812', '1', '2024-03-05 09:05:11.94812', '1', 1, '320213', NULL, '2', '0101000020B01100005067EDAA2053834161BEA192C5B54A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'a66f1909000edf8a19b92802cc206d91', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d4089c6eb9bc6688418e07447afb81e7', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.95252', '1', '2024-03-05 09:05:11.95252', '1', 1, '320205', NULL, '2', '0101000020B0110000FFEA6588185483414964265BFBAB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'd4089c6eb9bc6688418e07447afb81e7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d484e7f18b19f9f6f9e3d69a69b486bd', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.956543', '1', '2024-03-05 09:05:11.956543', '1', 1, '320205', NULL, '2', '0101000020B0110000A864BC08FA538341DB15DD50C9AC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'd484e7f18b19f9f6f9e3d69a69b486bd', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_e60fd14543a6425f54b79c4fe417e7c7', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.960942', '1', '2024-03-05 09:05:11.960942', '1', 1, '320205', NULL, '2', '0101000020B0110000C69A64FFFD5383419C01CCAEC8AE4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'e60fd14543a6425f54b79c4fe417e7c7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_73661f531f62946941b350af062d10a0', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.964805', '1', '2024-03-05 09:05:11.964805', '1', 1, '320205', NULL, '2', '0101000020B0110000872E86E228548341910688DDA1AC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '73661f531f62946941b350af062d10a0', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_7e4b1d06ffc849cd488e7303cad2fb7d', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.968819', '1', '2024-03-05 09:05:11.968819', '1', 1, '320205', NULL, '2', '0101000020B0110000C6CA58A12E54834120BB32B2F4AD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '7e4b1d06ffc849cd488e7303cad2fb7d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ac4b356294a2843955d5293c54434ce1', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.973359', '1', '2024-03-05 09:05:11.973359', '1', 1, '320205', NULL, '2', '0101000020B011000093CB0FCD275483419D5308B5CCAF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'ac4b356294a2843955d5293c54434ce1', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_fd9e4d2daaa7a583a0f84db01f769f32', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.977703', '1', '2024-03-05 09:05:11.977703', '1', 1, '320205', NULL, '2', '0101000020B0110000E230B87AEF5483410A6184A6F0BD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'fd9e4d2daaa7a583a0f84db01f769f32', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_91d8ce0af930f07a3eada84ba8908377', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.981638', '1', '2024-03-05 09:05:11.981638', '1', 1, '320205', NULL, '2', '0101000020B011000004B5EA3345548341E3B761E9A4B84A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '91d8ce0af930f07a3eada84ba8908377', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_c40504e5bd16306d729553af6709a708', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.985581', '1', '2024-03-05 09:05:11.985581', '1', 1, '320214', NULL, '2', '0101000020B01100007545BE3AAB538341647A6F056CAB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'c40504e5bd16306d729553af6709a708', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a43e038c369169d3f54b2a8dbbc89246', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.990695', '1', '2024-03-05 09:05:11.990695', '1', 1, '320214', NULL, '2', '0101000020B0110000B32FC9BAFE548341C4A0A0DCB6A44A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'a43e038c369169d3f54b2a8dbbc89246', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ca1810026a7f65ed0254c29c2239bcc7', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:11.99898', '1', '2024-03-05 09:05:11.99898', '1', 1, '320214', NULL, '2', '0101000020B0110000EC2A331405558341925859E54A954A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'ca1810026a7f65ed0254c29c2239bcc7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ad03868a8d833a2f6b7282d3093dc01e', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:12.003363', '1', '2024-03-05 09:05:12.003363', '1', 1, '320214', NULL, '2', '0101000020B0110000595ED0CB885583411974F15774994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'ad03868a8d833a2f6b7282d3093dc01e', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5075c92915805196c65f6ff70ed91524', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:12.007309', '1', '2024-03-05 09:05:12.007309', '1', 1, '320214', NULL, '2', '0101000020B0110000CEFDC928D4538341A399E4F6C9A74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', '5075c92915805196c65f6ff70ed91524', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f27ee03b5cbc94702fe14958567de7f7', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:12.011516', '1', '2024-03-05 09:05:12.011516', '1', 1, '320214', NULL, '2', '0101000020B011000011C1AEA75A54834101375BF9A9954A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f27ee03b5cbc94702fe14958567de7f7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_f41f8c9d43146a29782711f69e809486', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:12.015794', '1', '2024-03-05 09:05:12.015794', '1', 1, '320214', NULL, '2', '0101000020B0110000895816475954834116BD7E97C2954A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'f41f8c9d43146a29782711f69e809486', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_dd7a0ced83f0f3250f499b6685eae2cf', '0', '老旧管网', '3', '2', NULL, NULL, '2024-03-05 09:05:12.020624', '1', '2024-03-05 09:05:12.020624', '1', 1, '320214', NULL, '2', '0101000020B0110000AE30E1BED8538341B512891D4BAA4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '老旧管网', 'dd7a0ced83f0f3250f499b6685eae2cf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_0d06ed54ece5e1b2e4ad4a19be8de583', '0', '沪宁铁路&京沪线沪宁段', '3', '3', NULL, NULL, '2024-03-05 09:05:12.025107', '1', '2024-03-05 09:05:12.025107', '1', 1, '320206', NULL, '2', '0101000020B0110000135B35F40E538341821716ABEAD44A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '0d06ed54ece5e1b2e4ad4a19be8de583', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_3a33389f9b3cc857c13660a3b0d41c2f', '0', '沪宁铁路&京沪线沪宁段', '3', '3', NULL, NULL, '2024-03-05 09:05:12.029338', '1', '2024-03-05 09:05:12.029338', '1', 1, '320206', NULL, '2', '0101000020B01100007F30F11CA7528341D2C8621CF1B64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '3a33389f9b3cc857c13660a3b0d41c2f', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_b6b2e6cfaafd9ee4b84be3899b28477b', '0', '沪宁铁路&京沪线沪宁段', '3', '3', NULL, NULL, '2024-03-05 09:05:12.034481', '1', '2024-03-05 09:05:12.034481', '1', 1, '320206', NULL, '2', '0101000020B011000020CB2B8ECD518341D33E73E80EB74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'b6b2e6cfaafd9ee4b84be3899b28477b', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_cf0307d00c181cd5486579e3dae1021e', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.038654', '1', '2024-03-05 09:05:12.038654', '1', 1, '320206', NULL, '2', '0101000020B01100007F30F11CA7528341D2C8621CF1B64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'cf0307d00c181cd5486579e3dae1021e', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_00948d4a60f6546f633590a4630f1767', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.042549', '1', '2024-03-05 09:05:12.042549', '1', 1, '320206', NULL, '2', '0101000020B011000020CB2B8ECD518341D33E73E80EB74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '00948d4a60f6546f633590a4630f1767', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_cf0d4dd8628c10b8f2587a1284e6ff1f', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.046601', '1', '2024-03-05 09:05:12.046601', '1', 1, '320206', NULL, '2', '0101000020B01100000ACD2099B152834185DA10C3DABE4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'cf0d4dd8628c10b8f2587a1284e6ff1f', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d845adbde9dfe7db027828d23691fe64', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.050829', '1', '2024-03-05 09:05:12.050829', '1', 1, '320206', NULL, '2', '0101000020B01100007F30F11CA7528341D2C8621CF1B64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'd845adbde9dfe7db027828d23691fe64', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8348219d8be7c9de1a276f9a68ba150f', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.054865', '1', '2024-03-05 09:05:12.054865', '1', 1, '320206', NULL, '2', '0101000020B0110000135B35F40E538341821716ABEAD44A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '8348219d8be7c9de1a276f9a68ba150f', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_31a40daf36ebe52596515e9ca7ffe336', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.05884', '1', '2024-03-05 09:05:12.05884', '1', 1, '320206', NULL, '2', '0101000020B01100007F30F11CA7528341D2C8621CF1B64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '31a40daf36ebe52596515e9ca7ffe336', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_337d342911671454aab0246b27df26a4', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.062847', '1', '2024-03-05 09:05:12.062847', '1', 1, '320206', NULL, '2', '0101000020B011000020CB2B8ECD518341D33E73E80EB74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '337d342911671454aab0246b27df26a4', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ee86d32561e9a47d3934d5621066df2c', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.06681', '1', '2024-03-05 09:05:12.06681', '1', 1, '320206', NULL, '2', '0101000020B011000036CAA539A352834134409A2540BB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'ee86d32561e9a47d3934d5621066df2c', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_7790457fd2fbd0523884a4c16dff142f', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.070719', '1', '2024-03-05 09:05:12.070719', '1', 1, '320206', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '7790457fd2fbd0523884a4c16dff142f', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a76051d7513779747088393cbbb1fb4c', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.074818', '1', '2024-03-05 09:05:12.074818', '1', 1, '320206', NULL, '2', '0101000020B0110000DF8307C22952834163FDE06D23C34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'a76051d7513779747088393cbbb1fb4c', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_af865161b352b31ed2427bb885d2a653', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.078899', '1', '2024-03-05 09:05:12.078899', '1', 1, '320206', NULL, '2', '0101000020B01100007362DF8B10528341E29EC80310BD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'af865161b352b31ed2427bb885d2a653', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_78827062dce194e992dd7635938f3caf', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.08329', '1', '2024-03-05 09:05:12.08329', '1', 1, '320206', NULL, '2', '0101000020B01100004886049A174B83410041F39E2D7B4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '78827062dce194e992dd7635938f3caf', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_c45b8ad0b9a4d9b089877679744b2ba8', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.087101', '1', '2024-03-05 09:05:12.087101', '1', 1, '320206', NULL, '2', '0101000020B011000044B0BA88C351834181AF767806B44A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'c45b8ad0b9a4d9b089877679744b2ba8', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_c0709f553664194a558384c6eb732426', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.091167', '1', '2024-03-05 09:05:12.091167', '1', 1, '320206', NULL, '2', '0101000020B0110000E19270434D528341806C95E3F3B74A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'c0709f553664194a558384c6eb732426', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_0771312d3b8792ab150dce1513df6109', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.095205', '1', '2024-03-05 09:05:12.095205', '1', 1, '320206', NULL, '2', '0101000020B0110000DE3525ADC2528341B4BDDDED99D54A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '0771312d3b8792ab150dce1513df6109', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_e3e5da59c04b4c8ece1c8d8abbcce401', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.098978', '1', '2024-03-05 09:05:12.098978', '1', 1, '320206', NULL, '2', '0101000020B01100009AD321B16E528341D9A0B6C25CBB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'e3e5da59c04b4c8ece1c8d8abbcce401', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8ea736617694d5f0ff53e760ab8f055d', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.103631', '1', '2024-03-05 09:05:12.103631', '1', 1, '320206', NULL, '2', '0101000020B0110000EC395FC927528341CA1684F09EC64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '8ea736617694d5f0ff53e760ab8f055d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a80b832e266bde2a77244f785da68b94', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.107552', '1', '2024-03-05 09:05:12.107552', '1', 1, '320206', NULL, '2', '0101000020B01100007F30F11CA7528341D2C8621CF1B64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'a80b832e266bde2a77244f785da68b94', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_78168789ae78e971f7a940b81db31cb5', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.111529', '1', '2024-03-05 09:05:12.111529', '1', 1, '320206', NULL, '2', '0101000020B0110000FCCFC43687528341FF2B7197BDC84A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '78168789ae78e971f7a940b81db31cb5', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_2d994aef89be93983681730c20790463', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.11584', '1', '2024-03-05 09:05:12.11584', '1', 1, '320206', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '2d994aef89be93983681730c20790463', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_089059e04b776e050ca90fadbe5034d6', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.119638', '1', '2024-03-05 09:05:12.119638', '1', 1, '320213', NULL, '2', '0101000020B0110000EBEB6E89ED5283411C7983B8F3D34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '089059e04b776e050ca90fadbe5034d6', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_0d14aa7a8797e9ddb34d51eb146848d2', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.123983', '1', '2024-03-05 09:05:12.123983', '1', 1, '320213', NULL, '2', '0101000020B0110000C6E881B45A5383418BD4BB1264B34A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '0d14aa7a8797e9ddb34d51eb146848d2', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_2ef61a0387d93d25fc4163dcd15ea879', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.128005', '1', '2024-03-05 09:05:12.128005', '1', 1, '320213', NULL, '2', '0101000020B0110000B2BD1C9BFC528341C7D17D392FB24A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '2ef61a0387d93d25fc4163dcd15ea879', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_647630da0a792ed7895e1324a93dd082', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.131904', '1', '2024-03-05 09:05:12.131904', '1', 1, '320213', NULL, '2', '0101000020B0110000B2BD1C9BFC528341C7D17D392FB24A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '647630da0a792ed7895e1324a93dd082', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_55edd9618d83e6b61838eb97e04b474b', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.135857', '1', '2024-03-05 09:05:12.135857', '1', 1, '320205', NULL, '2', '0101000020B0110000797CEB809755834195E245D9A0A04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '55edd9618d83e6b61838eb97e04b474b', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_438df94cabb6ffdb2864debf41bfd96b', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.139796', '1', '2024-03-05 09:05:12.139796', '1', 1, '320205', NULL, '2', '0101000020B011000023312E328A538341EB6227759FA24A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '438df94cabb6ffdb2864debf41bfd96b', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ccf80e894d9e9e564656fa345b5b8235', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.143692', '1', '2024-03-05 09:05:12.143692', '1', 1, '320205', NULL, '2', '0101000020B0110000F394956E6A52834111A44ED801DC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'ccf80e894d9e9e564656fa345b5b8235', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d054b3649fb064fc63b1bebb94a39b97', '0', '京沪高铁', '3', '3', NULL, NULL, '2024-03-05 09:05:12.147508', '1', '2024-03-05 09:05:12.147508', '1', 1, '320205', NULL, '2', '0101000020B0110000EFB0DAD48A538341D199BB9939994A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'd054b3649fb064fc63b1bebb94a39b97', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_087d256a042811abf0111c4c2573f49a', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.151401', '1', '2024-03-05 09:05:12.151401', '1', 1, '320205', NULL, '2', '0101000020B0110000243A798C4C548341C7F78561D5A64A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '087d256a042811abf0111c4c2573f49a', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_52de9e9ae051be86632a02b5a6721ae8', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.155502', '1', '2024-03-05 09:05:12.155502', '1', 1, '320205', NULL, '2', '0101000020B011000023312E328A538341EB6227759FA24A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '52de9e9ae051be86632a02b5a6721ae8', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_8a5c1b7ab682cc12044887a28ab40572', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.15945', '1', '2024-03-05 09:05:12.15945', '1', 1, '320205', NULL, '2', '0101000020B0110000DC1EC29B865583418BD5E54E18AC4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '8a5c1b7ab682cc12044887a28ab40572', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_fce819b657420f5ef3b5e3e2e1cb1d37', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.164049', '1', '2024-03-05 09:05:12.164049', '1', 1, '320205', NULL, '2', '0101000020B01100009ADE49162F558341FDD1927CD6AB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'fce819b657420f5ef3b5e3e2e1cb1d37', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5c514c5688d2d5f27b4a8640e1f9a2e0', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.168379', '1', '2024-03-05 09:05:12.168379', '1', 1, '320205', NULL, '2', '0101000020B01100009DE2491B4C55834185D1E68C81AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', '5c514c5688d2d5f27b4a8640e1f9a2e0', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_dc1cf659526a0466ae5e85f94d4eb945', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.172115', '1', '2024-03-05 09:05:12.172115', '1', 1, '320205', NULL, '2', '0101000020B01100008A9C9EA12D5583414FD7157351AF4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'dc1cf659526a0466ae5e85f94d4eb945', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_cd9c93092f0112cca745e1e7a9ce0320', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.176122', '1', '2024-03-05 09:05:12.176122', '1', 1, '320205', NULL, '2', '0101000020B011000047B7F4A239558341F866F4B1C9B04A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'cd9c93092f0112cca745e1e7a9ce0320', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ee42bf679b42d927f72031f109e81524', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.180039', '1', '2024-03-05 09:05:12.180039', '1', 1, '320205', NULL, '2', '0101000020B0110000E8BDE6C35E5483416BFCA94E3CAD4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'ee42bf679b42d927f72031f109e81524', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_febb4a63ff98b25016e83c54b1dcd0db', '0', '京沪高铁', '3', '2', NULL, NULL, '2024-03-05 09:05:12.184223', '1', '2024-03-05 09:05:12.184223', '1', 1, '320205', NULL, '2', '0101000020B011000098798B1D875483413517741738BB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '京沪高铁', 'febb4a63ff98b25016e83c54b1dcd0db', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_71edaebb944a82ea1492cd19a89ea0d7', '0', '沪宁铁路&京沪线沪宁段', '3', '3', NULL, NULL, '2024-03-05 09:05:12.188346', '1', '2024-03-05 09:05:12.188346', '1', 1, '320214', NULL, '2', '0101000020B01100009003F16966548341CCEE09B15AA14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '71edaebb944a82ea1492cd19a89ea0d7', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_e32b61dcbd90070c8fb6c1ee6fe366c3', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.192155', '1', '2024-03-05 09:05:12.192155', '1', 1, '320214', NULL, '2', '0101000020B01100009E197F39F9548341A4714B5E2D904A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'e32b61dcbd90070c8fb6c1ee6fe366c3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_fa19dcb01413d9af8428cd154b93460d', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.196461', '1', '2024-03-05 09:05:12.196461', '1', 1, '320214', NULL, '2', '0101000020B0110000889A547E73548341FA1F270327984A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'fa19dcb01413d9af8428cd154b93460d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_85062db288ad290593b6b2e4cfe7078d', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.200178', '1', '2024-03-05 09:05:12.200178', '1', 1, '320214', NULL, '2', '0101000020B01100009003F16966548341CCEE09B15AA14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '85062db288ad290593b6b2e4cfe7078d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_93de8416a0eb0c262a8b0aa5fbc3abd0', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.204061', '1', '2024-03-05 09:05:12.204061', '1', 1, '320214', NULL, '2', '0101000020B01100006184A620A753834156EE17D3EDAA4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '93de8416a0eb0c262a8b0aa5fbc3abd0', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_d6b4d7fef798da9e40f5891eecd88e0a', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.208121', '1', '2024-03-05 09:05:12.208121', '1', 1, '320214', NULL, '2', '0101000020B01100002534F8C0F953834127CF75B3CEA14A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'd6b4d7fef798da9e40f5891eecd88e0a', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5301dac76a60cc3a108d6cc00cf4a670', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.211972', '1', '2024-03-05 09:05:12.211972', '1', 1, '320214', NULL, '2', '0101000020B0110000321BB62FB4538341E6FC435A33AB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', '5301dac76a60cc3a108d6cc00cf4a670', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a42a4ff7d95f4e3c0bd6c3b7dd0d3a21', '0', '沪宁铁路&京沪线沪宁段', '3', '2', NULL, NULL, '2024-03-05 09:05:12.21645', '1', '2024-03-05 09:05:12.21645', '1', 1, '320214', NULL, '2', '0101000020B0110000321BB62FB4538341E6FC435A33AB4A41', '无锡华润燃气有限公司', NULL, NULL, NULL, '沪宁铁路&京沪线沪宁段', 'a42a4ff7d95f4e3c0bd6c3b7dd0d3a21', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5afc2152ad11d08b9adfeb6f4fa2e04d', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '3', NULL, NULL, '2024-03-05 09:05:12.220441', '1', '2024-03-05 09:05:12.220441', '1', 1, '320206', NULL, '2', NULL, '无锡百地年液化石油气有限公司', '江苏天达绿源安全评价有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', '5afc2152ad11d08b9adfeb6f4fa2e04d', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_5eac937cf0cd7d8fadc1b420450108a6', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '3', NULL, NULL, '2024-03-05 09:05:12.226561', '1', '2024-03-05 09:05:12.226561', '1', 1, '320206', NULL, '2', NULL, '无锡市联丰燃气有限公司中化分公司', '北京国石安康科技有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', '5eac937cf0cd7d8fadc1b420450108a6', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a373eafb7111f4a0d2f6a3bebc1dda4e', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '3', NULL, NULL, '2024-03-05 09:05:12.231229', '1', '2024-03-05 09:05:12.231229', '1', 1, '320206', NULL, '2', NULL, '无锡红明液化石油气有限公司', '南京赛福特安全评价认证有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', 'a373eafb7111f4a0d2f6a3bebc1dda4e', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_a9a632283fa0311bee5975533030f679', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '1', NULL, NULL, '2024-03-05 09:05:12.23598', '1', '2024-03-05 09:05:12.23598', '1', 1, '320206', NULL, '2', NULL, '无锡利安化工贸易有限公司', '北京国石安康科技有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', 'a9a632283fa0311bee5975533030f679', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_c17cd0be044732d2a80c48d66e29eeb3', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '1', NULL, NULL, '2024-03-05 09:05:12.239919', '1', '2024-03-05 09:05:12.239919', '1', 1, '320205', NULL, '2', NULL, '无锡张泾燃气有限公司', '北京国石安康科技有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', 'c17cd0be044732d2a80c48d66e29eeb3', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('rq_jg_fxpg_ed5b09d2ac039105ee1527358f432912', '0', 'LPG泄漏后的火灾、爆炸危险', '3', '4', NULL, NULL, '2024-03-05 09:05:12.245823', '1', '2024-03-05 09:05:12.245823', '1', 1, '320206', NULL, '2', NULL, '无锡市锡良液化气有限公司', '江苏邦驰茂元安全技术科技有限公司', NULL, NULL, 'LPG泄漏后的火灾、爆炸危险', 'ed5b09d2ac039105ee1527358f432912', NULL, '燃气', 'rq_jg_fxpg', '2023-12-29 17:00:26.98', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_C02D47C9A1DE4D6A8790716EB58FCCBD', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.256746', '1', '2024-03-05 09:05:12.256746', '1', 1, '320214', NULL, '2', '0101000020B01100004644A2E82A55834192A48D1FF39F4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'C02D47C9A1DE4D6A8790716EB58FCCBD', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_D2B08CF374684EB8A08F945A833DB2C8', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.275486', '1', '2024-03-05 09:05:12.275486', '1', 1, '320213', NULL, '2', '0101000020B01100000325D441DE52834117DF240088AD4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'D2B08CF374684EB8A08F945A833DB2C8', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_4843E8D9F7F14FDF99B04C27F47EACDA', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.280154', '1', '2024-03-05 09:05:12.280154', '1', 1, '320205', NULL, '2', '0101000020B0110000BD9F28E59454834157B7EB5EACBE4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '4843E8D9F7F14FDF99B04C27F47EACDA', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_D23B4639E2D3405AA8DC44D76A39E882', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.284231', '1', '2024-03-05 09:05:12.284231', '1', 1, '320205', NULL, '2', '0101000020B0110000175791D05954834107E2851D6FC04A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'D23B4639E2D3405AA8DC44D76A39E882', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_46A394BA12964C4F8EEF928F260EE70C', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.288204', '1', '2024-03-05 09:05:12.288204', '1', 1, '320205', NULL, '2', '0101000020B01100007B15255E23568341026B22541DC54A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '46A394BA12964C4F8EEF928F260EE70C', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_FB17BD89B3DA4FFFBA3D0F9182D2BB9E', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.292005', '1', '2024-03-05 09:05:12.292005', '1', 1, '320205', NULL, '2', '0101000020B01100002ABD40CC34548341622F62355DAC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'FB17BD89B3DA4FFFBA3D0F9182D2BB9E', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_A15E5B7A0B784472B9A60517723C41BE', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.29644', '1', '2024-03-05 09:05:12.29644', '1', 1, '320205', NULL, '2', '0101000020B0110000A71CCCD2F2538341D833DF84B0AD4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'A15E5B7A0B784472B9A60517723C41BE', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_BB71E48B509C4BBBB420C577ECC8A22D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.300542', '1', '2024-03-05 09:05:12.300542', '1', 1, '320205', NULL, '2', '0101000020B0110000E236F6B74C568341E081AC0061A64A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'BB71E48B509C4BBBB420C577ECC8A22D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_888D4BBAFEA94156AE61931C7C0A794B', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.305905', '1', '2024-03-05 09:05:12.305905', '1', 1, '320205', NULL, '2', '0101000020B0110000F865736D56568341744822FF0EB54A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '888D4BBAFEA94156AE61931C7C0A794B', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_B5E4627D591B440CAE82707EFFDE358A', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.310511', '1', '2024-03-05 09:05:12.310511', '1', 1, '320205', NULL, '2', '0101000020B011000002B1E722975683416B50A0F57BB74A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'B5E4627D591B440CAE82707EFFDE358A', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_682', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.537992', '1', '2024-03-05 09:05:19.537992', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '682', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_F3F19F8A595E437CB574BF5374E7586E', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.315032', '1', '2024-03-05 09:05:12.315032', '1', 1, '320205', NULL, '2', '0101000020B01100006DCFE21825568341E62213C473BC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'F3F19F8A595E437CB574BF5374E7586E', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_DB2D099ED9CD481EA3BF0E2A48858790', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.318795', '1', '2024-03-05 09:05:12.318795', '1', 1, '320205', NULL, '2', '0101000020B0110000889D284E39548341A755F36E40BB4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'DB2D099ED9CD481EA3BF0E2A48858790', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_E3F33D5DE801460EA4092A24BB02F812', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.322657', '1', '2024-03-05 09:05:12.322657', '1', 1, '320205', NULL, '2', '0101000020B0110000DF1442E11455834167FBA3B635AF4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'E3F33D5DE801460EA4092A24BB02F812', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_808B1583E3024C7D96788D537F0FA06D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.3271', '1', '2024-03-05 09:05:12.3271', '1', 1, '320205', NULL, '2', '0101000020B0110000D88F20784F54834183F3D79A3DBE4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '808B1583E3024C7D96788D537F0FA06D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_E4D055D390464D379280AC8AA37FEF70', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.331662', '1', '2024-03-05 09:05:12.331662', '1', 1, '320205', NULL, '2', '0101000020B01100000A71543DC8558341FACBA2E1E6C04A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'E4D055D390464D379280AC8AA37FEF70', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_C60B1FAAFBB14837A1A43E49A8A4C0CA', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.335847', '1', '2024-03-05 09:05:12.335847', '1', 1, '320205', NULL, '2', '0101000020B01100000803B2AC905483415B89F8DBD7C04A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'C60B1FAAFBB14837A1A43E49A8A4C0CA', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_D63ACFE9D33D46CF93B9B496802D3AE5', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.340469', '1', '2024-03-05 09:05:12.340469', '1', 1, '320205', NULL, '2', '0101000020B0110000222345A321568341DC9E52A977BC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'D63ACFE9D33D46CF93B9B496802D3AE5', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_DA68BFC3A8334F4698D97B0B3BA6E390', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.344278', '1', '2024-03-05 09:05:12.344278', '1', 1, '320205', NULL, '2', '0101000020B01100004391BB410E5683415FAD1188749A4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'DA68BFC3A8334F4698D97B0B3BA6E390', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_79E5F3A959AB4EA29D0B842A835662C6', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.348535', '1', '2024-03-05 09:05:12.348535', '1', 1, '320206', NULL, '2', '0101000020B0110000AA15DF2903528341C86FAE907BCC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '79E5F3A959AB4EA29D0B842A835662C6', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_B64D3C6C00E54962BA99909AAB82A7E4', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.352341', '1', '2024-03-05 09:05:12.352341', '1', 1, '320206', NULL, '2', '0101000020B0110000BC192F771E52834148F7849F7ACC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'B64D3C6C00E54962BA99909AAB82A7E4', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_195FB34EE920444091CD0A2CD64A91F4', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.35632', '1', '2024-03-05 09:05:12.35632', '1', 1, '320206', NULL, '2', '0101000020B0110000D95164CC11528341E625126CDBCC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '195FB34EE920444091CD0A2CD64A91F4', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_D4ABF97520CE4CC6A82EF8F2321A3CAA', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.360111', '1', '2024-03-05 09:05:12.360111', '1', 1, '320206', NULL, '2', '0101000020B01100001CE203702852834173BF34388BC94A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'D4ABF97520CE4CC6A82EF8F2321A3CAA', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_8E52A764978E41699529127081D8521C', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.363977', '1', '2024-03-05 09:05:12.363977', '1', 1, '320206', NULL, '2', '0101000020B011000004AF287E68528341D1B2263255C54A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '8E52A764978E41699529127081D8521C', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_C4D73F611B194D5F9A84AC630DF03D7D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.367762', '1', '2024-03-05 09:05:12.367762', '1', 1, '320206', NULL, '2', '0101000020B0110000F5DF0F3D6F52834157FF650D97C14A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'C4D73F611B194D5F9A84AC630DF03D7D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_376D89B791224F35885CD9C069A2B37D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.371481', '1', '2024-03-05 09:05:12.371481', '1', 1, '320206', NULL, '2', '0101000020B0110000BFB468E3F5528341658D097F18C64A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '376D89B791224F35885CD9C069A2B37D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_259782B174944D319AF4EC3DC10DFCCB', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.375106', '1', '2024-03-05 09:05:12.375106', '1', 1, '320206', NULL, '2', '0101000020B01100003F0F7573F65283413FB17ED2D7C64A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '259782B174944D319AF4EC3DC10DFCCB', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_1234E2762C5049AEA0A6CAF43C5CABBF', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.378788', '1', '2024-03-05 09:05:12.378788', '1', 1, '320206', NULL, '2', '0101000020B01100006F2AB0036953834191182AC65BC04A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '1234E2762C5049AEA0A6CAF43C5CABBF', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_F0A7749DFACE45C095D86240ECB66B73', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.38246', '1', '2024-03-05 09:05:12.38246', '1', 1, '320206', NULL, '2', '0101000020B0110000441F8DA569538341F9EFBEF9BCBC4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'F0A7749DFACE45C095D86240ECB66B73', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_E68D9BD9CAF044349C168CB325C5A1D1', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.386521', '1', '2024-03-05 09:05:12.386521', '1', 1, '320206', NULL, '2', '0101000020B0110000CADE15217C528341E445DF6C47BE4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'E68D9BD9CAF044349C168CB325C5A1D1', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_757EFB9F7C1446E5A7697F7BD58F5DBF', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.391169', '1', '2024-03-05 09:05:12.391169', '1', 1, '320213', NULL, '2', '0101000020B0110000B3AAB7B54C53834154A8D3B25EA74A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '757EFB9F7C1446E5A7697F7BD58F5DBF', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_79AC118971564E9BBD27BB34DF1326B7', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.394931', '1', '2024-03-05 09:05:12.394931', '1', 1, '320213', NULL, '2', '0101000020B0110000D26F80673D5383410D829F8FF3A24A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '79AC118971564E9BBD27BB34DF1326B7', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_160CB3D3AC9A4D89BC27E146A8707AD2', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.399054', '1', '2024-03-05 09:05:12.399054', '1', 1, '320299', NULL, '2', '0101000020B01100006D07FA59CA53834152C75A3D4C934A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '160CB3D3AC9A4D89BC27E146A8707AD2', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_A852A6B3E88C4A1D8F2C68265E765F5D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.402974', '1', '2024-03-05 09:05:12.402974', '1', 1, '320299', NULL, '2', '0101000020B0110000CBA0C6B394538341D533D99DEA964A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'A852A6B3E88C4A1D8F2C68265E765F5D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_3318A1F8995A4CB9AD6EA2FCB1183F4A', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.407573', '1', '2024-03-05 09:05:12.407573', '1', 1, '320213', NULL, '2', '0101000020B01100005F94BD8FCC528341F35767C063AF4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '3318A1F8995A4CB9AD6EA2FCB1183F4A', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_B99C24EB9F674CCF8B619F8521C11575', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.411254', '1', '2024-03-05 09:05:12.411254', '1', 1, '320213', NULL, '2', '0101000020B01100008358FF75815383413CB1176E00AB4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'B99C24EB9F674CCF8B619F8521C11575', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_688', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.541645', '1', '2024-03-05 09:05:19.541645', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏程度:中,锚固区破损', '688', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_598', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.182369', '1', '2024-03-05 09:05:16.182369', '1', 1, '320211', NULL, '1', '0102000020B01100000B00000073D862E9EE528341846917A7BBA24A41780E474402538341E4E03887CAA24A41FFAB06DB1053834172BA85EFD3A24A41EC51AD4323538341D9BE61B2DBA24A4172767709265383415D3B461BE0A24A41A9C97784285383416D5505C0E7A24A41673E2F6D2A538341809268D5F1A24A413D0E00FD2B5383419D2A864CFDA24A41D79ABF933A5383415113DFD286A34A41013765103F538341C76FAAEBB3A34A41B6E542AD45538341289E9D7A14A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '598', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_495', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.186932', '1', '2024-03-05 09:05:16.186932', '1', 1, '320211', NULL, '1', '0102000020B01100000B00000028D2CFA964538341F3727810AFA14A41D689EEF66253834126FD2FF997A14A41532A15766153834128A4EE9082A14A41C9BEBFCC60538341FF9452B478A14A4123E1798760538341C438A76973A14A41D630B06860538341B7D760326CA14A41E030B0686053834141D2FA2E66A14A41D3F7B79A605383413437765F61A14A41C7BEBFCC605383417C92BBB658A14A41FCC9DE1561538341DCCB2E3852A14A41328BA83461538341E0F66BD04FA14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '495', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_550', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.19086', '1', '2024-03-05 09:05:16.19086', '1', 1, '320211', NULL, '1', '0102000020B01100000B000000388FFA10725383413FF0BA4B3FA24A41200E171F725383410F087AE84AA24A41AD60EC09725383411AF241BA53A24A41DCB62ED67153834163F1550C5AA24A4125826773715383412AEBDB9262A24A4131B84FBE705383419F00CA206CA24A41225C5417705383418661178975A24A4162388DB46F538341DCB563F97AA24A41F4F632356E5383416B2662116FA24A41079F1F5C6B538341C1AC98575AA24A41E41D0732655383416B2D63C62CA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '550', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_563', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.195158', '1', '2024-03-05 09:05:16.195158', '1', 1, '320211', NULL, '1', '0102000020B011000002000000FCF6BC446C538341133935C1E0994A41DB36899904538341E3F4F7215A984A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '563', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_565', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.19898', '1', '2024-03-05 09:05:16.19898', '1', 1, '320211', NULL, '1', '0102000020B01100001F000000FB91FC80705383413F1BAD6630AD4A41652C568770538341F18947C036AD4A41AB27B46771538341345E5C7553AD4A41783C740672538341C36A70366AAD4A417455F4C47253834189FC84EF84AD4A41B53D819673538341586544FBA0AD4A4143CF785D7453834151577B8EBDAD4A4194034A6A75538341DF83C4FEE2AD4A41563C268E7653834152A50EEF0AAE4A41CC28737F77538341B5CE12AF2AAE4A4129EF1D53785383410AFC8DFE46AE4A41B05A73FC785383413ACD5D035EAE4A4139C6C8A579538341FD8B3EF973AE4A41E0C3F7157A538341F92D2FF080AE4A4139F219737A538341976FFD0C8CAE4A4189E7C8A37A538341721220E38FAE4A416B9411B97B538341F470DEFEA3AE4A412889DEE97C5383417EA6476DB9AE4A412F5367DD7E53834147372A47DDAE4A4106C73CC67F538341EAC970DFEEAE4A414589277A80538341EBED1C1EFAAE4A411BEA2B54815383415FA673B304AF4A41D7DEF884825383419B53977910AF4A418A4E0E4E835383416F74FE0716AF4A4197388AAF8453834111B6CC2421AF4A418731170086538341886E23BA2BAF4A41B6F9B063875383417539695E37AF4A41DFDACA8589538341F49B9E0948AF4A417292646A8A538341F5457D1F4EAF4A414A582D3E8C5383411E71E59D5BAF4A41AA864F9B8C538341EBE3F6865EAF4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '565', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_551', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.202844', '1', '2024-03-05 09:05:16.202844', '1', 1, '320211', NULL, '1', '0102000020B011000003000000C3A522511653834148B85DE42DB24A41155600F614538341896D6FC932B24A41E43B73A712538341758ED65738B24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '551', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_549', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.206621', '1', '2024-03-05 09:05:16.206621', '1', 1, '320211', NULL, '1', '0102000020B01100000D0000007935234EBC538341567EA1F2DD9F4A417E0323D1BA5383410B0082E16F9F4A419FA8CDA6BA538341F47EF878689F4A4132D50074BA5383419AD30C2BFF9E4A41706B9A5ABA538341DEB61C2CF69E4A4134189ADFB7538341CC4B4A4FCB9E4A4173AE33C6B75383415F395B40CA9E4A419D6000FBB65383419A873D1EEC9E4A41DEAA55A6B6538341F00ADA57029F4A41F1F699E1B6538341B26BAB44259F4A415A0989F0B7538341C63804BA3F9F4A4143B02256B8538341144305AA479F4A417F0323D1BA5383415551D5B5E29F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '549', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_426', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.210964', '1', '2024-03-05 09:05:16.210964', '1', 1, '320211', NULL, '1', '0102000020B011000010000000B6797EBF3C53834144293CC6B3A84A413AA9641C3B538341D5AFF16984A84A41C496750D3A5383417C86EDA964A84A41764FD3F138538341165DE9E944A84A41F72FC283385383416B48E70935A84A41BB80A8DE37538341A3DF27FE18A84A4141ADDBAB37538341D3EB8CAC0EA84A41094A06423753834134391165EEA74A41FAB17DCB365383410F4DB51FBCA74A41DEE630D83653834133EE47F186A74A41190BE4653653834160D469BD80A64A41869F8EBC3553834186BD540C62A64A415616173535538341E883740E50A64A41CEAAC18B345383412D94504C42A64A41E4C4054A3353834180AC1AA92DA64A41848016BE30538341BC7815F905A64A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '426', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_462', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.214768', '1', '2024-03-05 09:05:16.214768', '1', 1, '320211', NULL, '1', '0102000020B01100000D000000DFB1DB903E538341E50B64F8D2AB4A41DE3C42A83F538341E4EC6028BBAB4A41C5D6B9AE40538341C91F08B3A0AB4A4149420F5841538341B2F816C48FAB4A41A37031B54153834191FEF1117AAB4A41AABC75F041538341A28D44E764AB4A41393E98C844538341489895BE3FAA4A41A804439C4553834118C8CB52D4A94A41F4E620BE45538341CAEA969FC7A94A413570984546538341E123C88AB8A94A41069AAAA34E538341B415F87E1DA94A414225A3DB56538341119F177A87A84A41CBFE674E5B538341CD122FFC35A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '462', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_602', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.218822', '1', '2024-03-05 09:05:16.218822', '1', 1, '320211', NULL, '1', '0102000020B01100000B0000006408012E355383412056584AF9AC4A41F80BDF4D3653834160977754E3AC4A41F84A012A3753834106E70EDED1AC4A4106BDE78237538341AF05639BC8AC4A41ACCDE70138538341D9153FD9BAAC4A416C5DF03838538341FC4AF934AFAC4A414B92A345385383419640F844A7AC4A416D83925638538341611119379DAC4A414692A34538538341F85D3FCA3AAC4A4113D3B4B139538341ADD62B0128AC4A4112D3B4B1395383414A9BE74428AC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '602', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_490', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.223287', '1', '2024-03-05 09:05:16.223287', '1', 1, '320211', NULL, '1', '0102000020B01100000F000000786B8FE7BA538341F8942F28E69F4A4134921DB1B95383418801135E9C9F4A41B4643011B95383414712FA5B6E9F4A41551935E9B85383414F885746669F4A4158FBA14BB8538341D2EC6F0D4A9F4A416C62E417B8538341261066E8449F4A41396D2BBCB75383419D7DA7433D9F4A4136A31307B753834145D6E6BE259F4A41EE8239C5B65383410CF8F738189F4A41F4FCC2B4B6538341064D5F50119F4A41065FF2A1B6538341AADAD9C9089F4A417B0C1DB7B6538341651DE116FA9E4A41FCFCC2B4B65383411C08C48FF69E4A41C72CF7F8B653834184CA6C02E89E4A4147984CA2B753834113E8F605CA9E4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '490', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_481', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.22731', '1', '2024-03-05 09:05:16.22731', '1', 1, '320211', NULL, '1', '0102000020B01100000E000000DF8ECFF00D538341DDE5D8ECAAAA4A41841469580D5383413A2B6F8691AA4A413FF3685A0C53834152C88AC85FAA4A4116C3576D0B53834146E41CA226AA4A41DF39E0E50A538341C5DFF6FF08AA4A41EE9246800A5383411F258D99EFA94A41ED9246800A538341851508E287A94A41B648F1D40A538341FE4B77E948A94A41306802430B538341090896FB2EA94A41DEC446FD0B53834166D4904B07A94A410480BE010E538341B6E30E64B7A84A41C73E14261153834107186B9A69A84A417FF047EB145383419ADD2C7715A84A4161152609175383415FE9E212EAA74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '481', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_571', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.231357', '1', '2024-03-05 09:05:16.231357', '1', 1, '320211', NULL, '1', '0102000020B011000008000000229A3AEE4153834165BBAA98FFAD4A410FA819FE4A538341D02CAF499FAD4A4124CB088C4C5383410A3D8B8791AD4A4122DD5E2B5253834150631E5160AD4A41C8B7E79D5453834101E081174AAD4A4165BBC5BD5553834133C3911841AD4A41C5FFB44958538341EC436C6E27AD4A41CA37AD065E53834106992F33DFAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '571', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_575', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.23511', '1', '2024-03-05 09:05:16.23511', '1', 1, '320211', NULL, '1', '0102000020B0110000030000005DBE6CD711538341EBD706B3D9B54A412DA7DBA8115383412C6F47A7BDB54A41C2D30E761153834178E1A97D9FB54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '575', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_506', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.23883', '1', '2024-03-05 09:05:16.23883', '1', 1, '320211', NULL, '1', '0102000020B01100000D0000009D953C3FCC528341BDC1A7CDEFAE4A411E8E62FBCC528341C9CCC364EBAE4A414AA546E5D052834116F626B4C8AE4A4197D89C82D75283414D8228618AAE4A4115CE516FEB528341278E9939DBAD4A4182A4066AF0528341537C4711B2AD4A415F938BFEF15283410911F9B8A0AD4A414495E120F65283414550943675AD4A41155B07DBFB5283411BEEC73D38AD4A4123CBF476FE52834121CFC46D20AD4A41F14141E902538341A99A0209F9AC4A414745E381095383413C2D203DBEAC4A41BBF6DABF125383417A4874BF6AAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '506', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_461', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.242748', '1', '2024-03-05 09:05:16.242748', '1', 1, '320211', NULL, '1', '0102000020B01100000D000000503F53D37E5383410EDE4DC4F9A24A4112B6507A6B538341C1FC00AD3EA44A41ABD4A43762538341148C5A21E1A44A416216E8825A538341E670266D5CA54A41D894C5AA57538341F1DBF84987A54A41203881F056538341A89662B0A0A54A41BADDC435525383417BA8FA3817A64A4117F1E5234A53834107D8E0E5D8A64A41BB375DAF48538341204BA1E1FCA64A4109DB18F547538341881A0D2826A74A41BBF83AD3475383412621469B52A74A41C790C34948538341771590FF7DA74A41E67D3BCB4B5383417940500A22A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '461', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_480', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.246622', '1', '2024-03-05 09:05:16.246622', '1', 1, '320211', NULL, '1', '0102000020B01100000C000000D1E130B60D5383417C58757863A74A4156B4CB0917538341242BC27AB0A64A4173D7BA9718538341EBCE1630ABA64A415EB4CB091753834162C2836546A54A412B7798BD165383418A4D3365E9A44A417F66983E16538341B60ECF9F77A44A412AEC31A6155383416F4CCEA0EFA34A416882CB8C1553834147226CBB8DA34A41C6B0EDE9155383412AFD86FED3A24A414084BA1C165383416899441B60A24A41D66E187E16538341DDA32F6842A24A414E81078D17538341B861B23816A24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '480', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_504', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.250357', '1', '2024-03-05 09:05:16.250357', '1', 1, '320211', NULL, '1', '0102000020B01100000C00000089B337D036538341F4279CD3B2A74A41465315F6345383419AF0CEA6AFA74A417E5B4CA5315383415C94235CAAA74A4122A2C330305383417E6F453EA8A74A414841BF562F53834121B6BCC9A6A74A4175DA0BCD2D538341DDD3DEA7A6A74A41052DE1B72D5383412DB6BCC9A6A74A419A81AC812253834172865AEFC6A74A41E7B2816E2153834137D0162BCBA74A41D4F456DA205383418A07E457CEA74A4128E4565B205383415151A093D2A74A41F4D3EF4B1B5383414F04CBED13A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '504', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_556', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.254234', '1', '2024-03-05 09:05:16.254234', '1', 1, '320211', NULL, '1', '0102000020B011000008000000F0A491B1AC5383412295F49CACA54A41C258E6E3A8538341E3FA42B277A54A41010F0C25A7538341B10CF4695EA54A41C2CC0BAAA4538341DA660B413AA54A414D86D0A5A053834189437113FEA44A415B2EBDCC9D538341EA3F6336D5A44A41D9E724E098538341CB1988C783A44A412C62A9FB9653834134AF541666A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '556', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_444', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.258011', '1', '2024-03-05 09:05:16.258011', '1', 1, '320211', NULL, '1', '0102000020B01100000700000079767EC2FF5383418BF698AF7D9C4A417237AC7DF9538341C3549DBD299C4A410C6BC315F953834103FE57762A9C4A41AE0A8DB5F8538341624297FE2F9C4A4167E98CB7F75383410635C708429C4A41FC9F94EBF65383416D746BA4459C4A419D9B6D72F55383417F3A2D0C489C4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '444', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_465', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.261878', '1', '2024-03-05 09:05:16.261878', '1', 1, '320211', NULL, '1', '0102000020B01100000200000006267C3ED85383414F03D9F8749B4A416BAC87E2B8538341F65993FF019B4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '465', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_474', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.265596', '1', '2024-03-05 09:05:16.265596', '1', 1, '320211', NULL, '1', '0102000020B0110000070000005FB9A298675383419314A0F279A14A414BFA4CF364538341CACDC96C54A14A416C78B9B76353834138CC986242A14A412EBD2D2D63538341CD8389043FA14A4101B84C78625383413106D7FA3FA14A41636392BF61538341702844AD47A14A4127ECC06E615383414DEA353F4CA14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '474', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_586', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.269357', '1', '2024-03-05 09:05:16.269357', '1', 1, '320211', NULL, '1', '0102000020B01100000F0000003C13E3B93653834110ACABC5FAA84A41144FC0E531538341AEDC3F7FD1A84A419A39F3B82E538341BCBD3CAFB9A84A4197F7B6BA2B5383410FC4B06C9FA84A41DA02EA892A538341D24C8CAA91A84A418F3D03B62753834177C9DCA768A84A4143F6609A265383414FF80CA351A84A41DE163608255383416B3F07FB25A84A4105124B58225383413F8F723EC9A74A418467D3D22053834154A529CAA5A74A41CE11B9371B53834106E7C5EC3FA74A4185F0B8391A538341859708D12BA74A41B5A2856E19538341028F6B9F11A74A412E83740019538341918EBC8CF0A64A412C118EA7185383418404E7DFADA64A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '586', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_475', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.273293', '1', '2024-03-05 09:05:16.273293', '1', 1, '320211', NULL, '1', '0102000020B0110000160000001D77ACFE365383419973E6E7BDA74A41DFED347736538341EAA0020C8CA64A41D8A1F03B365383416694EE4A75A64A4176278AA3355383412AEC73F35CA64A419ECC347935538341C2E1720355A64A412DBA456A34538341695ED6C93EA64A41397F9A1D305383413CF9DE3AFEA54A412E69CDEE2D538341E2CFDA7ADEA54A4175C044F92C53834116E0B6B8D0A54A418BDA88B72B5383416EF88015BCA54A41FB22EFD22A538341DEBEA017AAA54A41891000C429538341AF1626C091A54A4196DEFF4628538341584FA89861A54A4184FA3295275383410726A4D841A54A41FB8EDDEB2653834148D39B5802A54A4139D932972653834136FDF69EACA44A41BB056664265383413DB1279299A44A4131D9329726538341CEAC01F07BA44A415587883C295383418C25969AD2A34A41671F11B329538341666606929BA34A41193D33912953834174F5586786A34A41CC1B339328538341FD5D11D4EAA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '475', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_547', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.277725', '1', '2024-03-05 09:05:16.277725', '1', 1, '320211', NULL, '1', '0102000020B0110000210000001E0F3D8D1153834185C735BC42AB4A415FE145C20E5383416B988FABD0AA4A41FC050DA80D538341B73719CFA2AA4A411727037B0C538341E6632CD666AA4A41015058280B538341419208CF23AA4A418D60D3910A5383418D3F004FE4A94A416A68326C0A5383415F74C4ED9EA94A417AE4027F0A538341F6A594B95AA94A41D5436B860B53834142538C391BA94A4128A3D38D0C5383418EB31D8AEEA84A4134D558200F53834145341D7790A84A41C631DCBE13538341DCA998B72CA84A4109F6BFAE14538341D8F6FEE619A84A41F0F202F2185383413C543F0FC4A74A41468F3FC23E5383415E13E99605A54A4140FF0AEF4D5383411B75B738E7A34A410C12D2514E5383416D597E2AE0A34A410604A6C155538341E756900065A34A4191B2765356538341DB1E98455AA34A417C0244FB5F5383415416968294A24A4168FF863E645383416C3DC3503CA24A41B7C274556953834112927CF2DDA14A419026754F6C53834176293C44A7A14A41F0FF6B9B6E53834152FF7ACF87A14A417EC5A5AB74538341691999034DA14A4174BFE2A3765383414A1458BA3BA14A41CFC7971B7D53834151B9E2BD1DA14A4170CB393583538341FEA99DA205A14A415432DC468D538341D65B60B4EEA04A41435DF1869C53834131CF797BD2A04A41D75B9E44A053834118E7254FCBA04A41BE0BC5F6A55383418B87B042B5A04A415DF0B20BAC538341239A1EAF9BA04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '547', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_485', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.281851', '1', '2024-03-05 09:05:16.281851', '1', 1, '320211', NULL, '1', '0102000020B011000002000000F319FE9674528341260D887A49A54A4104BB31DD77528341D0C4440B7BA54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '485', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_527', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.285915', '1', '2024-03-05 09:05:16.285915', '1', 1, '320211', NULL, '1', '0102000020B01100000D000000A70A87C5D55283411FDC00E773B34A410B0FAE3ED75283412F6B53BC5EB34A419C5D2A63D852834154952A614EB34A41BAAC6042D95283416794C46D40B34A411F4051DCD95283411A9D945336B34A41676151DADA528341A5E872B71FB34A41C6657853DC528341A341BCED00B34A4188090C8FDD52834129F21582E5B24A414B1D3073DF5283418590F551ADB24A411DBC9C33E052834153985F4495B24A414053B444E352834191D4168B02B24A415D78DBB9E6528341077F4FA174B14A4139178EC1E6528341047F4FA174B14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '527', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_548', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.289816', '1', '2024-03-05 09:05:16.289816', '1', 1, '320211', NULL, '1', '0102000020B01100000B000000B74344E8C1538341B6A8F717D8A04A4180F0436DBF5383418635371CB4A04A41B93A9918BF5383414DD98BD1AEA04A41E122DD59BC5383412CDF661F99A04A4124EFED4CBA5383412666CBD58AA04A410A8DDCE2B753834124C0634F81A04A41490DA99AB5538341509B85317FA04A4179413117B353834111120EAA7EA04A4187C3EC5EB15383416049DBD681A04A415508755AAF5383413266CBD58AA04A413EA663F0AC538341D7A799F295A04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '548', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_497', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.293537', '1', '2024-03-05 09:05:16.293537', '1', 1, '320211', NULL, '1', '0102000020B011000009000000246488364F5383411B976C199CAC4A415E2E57FF4B5383415AF5740E2EAC4A415B8A66E64A5383413D0AAAA219AC4A415524FCB549538341EF91F01F08AC4A4100CA03EA48538341DA78064DFDAB4A41A52A260C48538341F000DF78EEAB4A419D4164A0475383415652D6D9E4AB4A41A536A2344753834163127F44DAAB4A41159254BD46538341B537BBFCC7AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '497', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_477', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.297412', '1', '2024-03-05 09:05:16.297412', '1', 1, '320211', NULL, '1', '0102000020B0110000040000008C72768C2153834140235473D5AE4A413168759C19538341881FB83C45AF4A411FBA1FF7165383416908EFAF71AF4A41684B859D105383412F217487C9AF4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '477', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_526', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.301055', '1', '2024-03-05 09:05:16.301055', '1', 1, '320211', NULL, '1', '0102000020B01100000C0000008D76AE3D725383412F9481C03DA24A415246FAB7725383410B2DBADE3CA24A41EEF4CA4973538341414DF3FC3BA24A4186E616C473538341A9F6A6843AA24A4153A1D4F7735383418F6947B236A24A414778FA3474538341363E50EF2FA24A4128B49B5A7453834109A6327824A24A4123B49B5A745383414ACDA2C41AA24A414278FA347453834100E497A711A24A4155A1D4F7735383412BC91B4E0AA24A4186C762BF73538341C84B7A3006A24A417A8AE6E46C538341C2420E1EA3A14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '526', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_553', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.304851', '1', '2024-03-05 09:05:16.304851', '1', 1, '320211', NULL, '1', '0102000020B01100000F0000003014D51227538341FF0AD1A858B34A411730086126538341DBB6137D4CB34A414F3B3B3025538341C711DED539B34A41C657507E23538341BA1B30B320B34A41D4FFADE321538341DD85A46A09B34A41D76E981C20538341A45FE55AEFB24A411CE4E69E1D5383414BC0FD1DC9B24A41CB84618E1C538341737D551EB7B24A419F2EAE831B538341DC6CCACDA3B24A41EAD169C91A5383412B58C8ED93B24A415FF42DC71953834105E05E837CB24A41B2BD8B2A195383418EFB6D906DB24A41DA82296E18538341C065E24756B24A41BC5218811753834142B7DD8F32B24A41F6D5E058175383411B3654272BB24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '553', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_499', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.308744', '1', '2024-03-05 09:05:16.308744', '1', 1, '320211', NULL, '1', '0102000020B0110000050000000AFD93AC3853834148BE4562EEA44A414A62056C3553834163AA0037DEA44A417BD5AFC4335383413D9F4292D6A44A41BC30FBC530538341CC734BCFCFA44A410ADFE67B26538341D1C7E82CB4A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '499', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_443', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.312978', '1', '2024-03-05 09:05:16.312978', '1', 1, '320211', NULL, '1', '0102000020B0110000050000001ECD75DA1653834135A1B73044AC4A4188275018195383411110D1E72FAC4A41024B17FA195383415A67380725AC4A41FBC4A53E1B538341CF28B9CD0DAC4A4106A5FB601F538341B592EDE8A6AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '443', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_472', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.316737', '1', '2024-03-05 09:05:16.316737', '1', 1, '320211', NULL, '1', '0102000020B0110000080000008EEA97E0E6528341036FCAFD6EB14A413A992C0EEF5283411F4FD0148AAF4A41CD3E7D18F05283417AA5D0C048AF4A414DB06DB2F0528341E88067ED2AAF4A41757C5699F1528341A3FC4D100EAF4A4169817D14F25283416F95D6BEFCAE4A4112958D72F55283414FA71935BEAE4A41163DBC98F9528341F8994B8E82AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '472', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_463', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.32103', '1', '2024-03-05 09:05:16.32103', '1', 1, '320211', NULL, '1', '0102000020B0110000040000000AB72FAE3F538341CD9F28AFBDAB4A411739EBF53D538341C737C7C8E3AB4A41FC15FC673C5383414669B9A7FCAB4A41513B73F539538341878ACF4823AC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '463', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_516', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.324992', '1', '2024-03-05 09:05:16.324992', '1', 1, '320211', NULL, '1', '0102000020B0110000090000003B588F4F3C5383415BAAFA7287AD4A41ACF7553D3753834196B2C67E23AD4A419782BC582E538341F264963781AC4A419FA1246C29538341A025B9D827AC4A4142B55C9224538341DDE01EB5D6AB4A418C1FE13021538341CB7AEB13B1AB4A4145659EE91E538341D18859709FAB4A41A1D2DF4417538341233651F05FAB4A415762E87D1253834193CA608A42AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '516', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_464', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.328833', '1', '2024-03-05 09:05:16.328833', '1', 1, '320211', NULL, '1', '0102000020B011000005000000B938DB9E82528341ABB69A0401B24A416BA5304C815283414A4ED8CD53B04A41B4F9ABB5805283418256A4D9EFAF4A41D2BD0A9080528341749A74E58BAF4A41271D739781528341CD1BBA27D9AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '464', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_476', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.332868', '1', '2024-03-05 09:05:16.332868', '1', 1, '320211', NULL, '1', '0102000020B01100002400000001651EE379528341D60A580A8DA54A41523902507C528341F7D07951B0A54A41D2A8EFE97F52834128465000E2A54A4172F002C58152834158D73649F6A54A415C22034283528341E1B083B1FFA54A411A4D29FC84528341FC57A2280BA64A4181DA955C89528341E37F50CC1BA64A41A960BC108E528341450C95F72BA64A413329331D90528341EC36CF0533A64A41F8C8D43C935283412BA697CF3FA64A41CC54042894528341FA76F7A143A64A412F25B5BF9E528341F372E2A27BA64A414A005542A3528341955404B992A64A4120D14B8EA5528341A90A8A3F9BA64A41D53E6D70A75283416D77B0F39FA64A415E4CB032AC5283414D2AA8B6A6A64A41714CE015B15283416F655D2EADA64A41F22DD7E0B3528341C1E2FE4BB1A64A414F803160B552834131D283E2B1A64A41D5CDF8C0B65283414AA92E35B3A64A41A35A4E68B8528341AFB6ECE1B6A64A41DA329F37BA52834178D9C715BEA64A41BCB2E101BB528341AF9DF7F6C3A64A41AE77EB2CBD5283415A86E76CD9A64A418DCD32CDBE528341F9509ECCEBA64A41AB0C46A8C052834129E2841500A74A41A9B9F5D0C2528341CD83E6C713A74A41D7E6E2EFC35283413FFD0D741CA74A41590FBDB0C452834117FA50B720A74A41269CAAC9C8528341E72F496A2FA74A4122A9F2DECF52834122005F9C45A74A4184A54507E95283419DAB513B9EA74A41BFCF78BC04538341E44B7C0201A84A416FDC9D780D5383415519CFB31DA84A41E0C1FC500E53834180C7245920A84A4164EFE9F00E5383419045832B24A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '476', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_583', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.336961', '1', '2024-03-05 09:05:16.336961', '1', 1, '320211', NULL, '1', '0102000020B011000009000000E2AED35D2B5383418F34172E30AA4A41B8E7786329538341F61AF4D236AA4A41BA2BE5CF235383412569C6C944AA4A419E8577771F538341C3D22FC14DAA4A41CB9ADAB01B5383417C5D8F8B55AA4A41EB500A1D1A5383412ABC54F858AA4A41BBD4B4F418538341BB3839615DAA4A418666B30A0E5383411C29BE2AACAA4A410A9A9FB8075383410C9493E9D5AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '583', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_493', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.341035', '1', '2024-03-05 09:05:16.341035', '1', 1, '320211', NULL, '1', '0102000020B011000003000000F010EAE13D538341D1346E6A2DAA4A4175FE18563A53834136663D991FAA4A4160D29C7B335383415514933E22AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '493', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_606', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.345321', '1', '2024-03-05 09:05:16.345321', '1', 1, '320211', NULL, '1', '0102000020B01100000800000098BAB29603538341048123C25C984A41DDEC98A5F05283419A98619914984A419960FDB8EE5283419CEEDBC90F984A4169DBFCC0EA52834129E00A040A984A41790BED62E7528341F63A202107984A41AD13FCCCE4528341FE3A202107984A41B743EC6EE1528341EDE4A5F00B984A4116A6C21FCB528341950B7E551B984A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '606', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_530', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.349222', '1', '2024-03-05 09:05:16.349222', '1', 1, '320211', NULL, '1', '0102000020B0110000140000000CF2DD1A9C53834131676C45FBAC4A4151D5750F9D538341738511F0D0AC4A4102B53CF19D538341B071014390AC4A415B14A5F89E538341D8C6337E19AC4A41D872504BA0538341621C096478AB4A41866EC283A053834122435FA644AB4A410EDA172DA15383415E220C7E1BAB4A41EEA4D5DDA25383410BC75266E5AA4A4131964904A45383412829340FCAAA4A412FF2EA23A75383418BB1F26093AA4A4107188314AA538341C1284F836FAA4A418A894BE6B25383410DE4B45F1EAA4A41953B1ED7C353834125CC7CCB8AA94A414A2C7478C8538341A5DDE96759A94A41120A7EA1CB53834139014CD726A94A41AAF71686D453834161FB67A54FA84A412A250426D553834127A6F38841A84A410661A54BD5538341D528526B3DA84A4163FE755CD6538341413C7D8C23A84A418CC39B14DD5383411265DB817EA74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '530', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_564', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.35353', '1', '2024-03-05 09:05:16.35353', '1', 1, '320211', NULL, '1', '0102000020B0110000150000001DA66DD03A53834112F001CB8EB24A416608BBCC38538341B1A3BD7397B24A41B1474E0C38538341C30404AB9EB24A410587E14B375383415DB8BF53A7B24A4162679B0C34538341AFB6867BC9B24A414F06D00727538341A1CBAE7855B34A41DE9AA26A23538341B9290FFA7DB34A41F703E83620538341F414054CA2B34A41EBFFC03E1E538341C2D2A9C7B5B34A41E4610EBA1C5383412B26852CC5B34A418B1068C6185383418576D954E5B34A417C06906A165383414A44E229F5B34A41A3DB873E13538341BE75EBB806B44A41E97E7F950E538341CAF969B919B44A41AF3F8C1200538341A822A0E853B44A41F904CDC0FC5283415562DF6061B44A41DB1A1212F75283417A77943A78B44A413E325B36F45283412BBFB1D087B44A419E28D3D8F25283414466C77D92B44A41F4948561F2528341F044C0BE98B44A41FB886D56EC5283418B1F7C38DFB44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '564', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_467', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.357365', '1', '2024-03-05 09:05:16.357365', '1', 1, '320211', NULL, '1', '0102000020B01100001400000061B824DF365383418E223B8AB4A74A417B118B793653834154A05D8E92A64A4154209C6836538341EE4516027BA64A4134F08A7B3553834159C066F755A64A4170BC9B6E3353834105F8D6CE2EA64A416351DF342E538341D0E59B9BE2A54A41DF6745D32B538341C34DFD81BCA54A4189AEBC5E2A5383414B49D7DF9EA54A41AD2167B728538341450BD13F6FA54A4195F155CA27538341219810444BA54A415568DE422753834172373F5728A54A411ADF66BB26538341D9928C7CEBA44A41A60B9A88265383416A9C2F47B1A44A41ECA1336F26538341FC4691298DA44A41358411912653834182E8D20D79A44A41B42167B728538341B8658D5AEDA34A419BC8001D2953834184559B79D5A34A41AC608993295383415038FC67ABA34A4145D9009C2953834180B0398C77A34A412DF533EA28538341B40974E02BA34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '467', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_520', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.361188', '1', '2024-03-05 09:05:16.361188', '1', 1, '320211', NULL, '1', '0102000020B011000009000000501559969E538341EB8C6C5277A84A413F3EAE439D5383414DA85A1464A84A4100FA962C9D538341884649C658A84A41D4A47F159D5383411AAB11FD4CA84A414A77A6119D538341EDC6B2B840A84A41F310321D9D5383415D5AED8026A84A41992DAEC49C538341A7CD9E9A1DA84A41B39F9E609C5383416871F34F18A84A4154A7F30F9A5383413791C90400A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '520', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_434', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.365027', '1', '2024-03-05 09:05:16.365027', '1', 1, '320211', NULL, '1', '0102000020B011000014000000B84ADEE6185383412B11985D35AE4A41091B2A631853834129B42F5E30AE4A41BBF929651753834166BAA9D727AE4A418D78C15D1653834114D19EBA1EAE4A41BE65FAFA155383418733C47E1BAE4A419D4BD4BF145383414BED50620DAE4A416DCA6BB8135383418AD84E82FDAD4A41ED1C16151053834190441711C0AD4A41F651D34E0D53834110E7940791AD4A41F467DC830A5383418F4669A364AD4A41890D024608538341E19FC3C540AD4A41DE507DAF07538341B407A64E35AD4A4151C16022075383416370458C29AD4A41B65FAC2105538341C221C482FAAC4A41196E60A7045383418738B965F1AC4A416486B5D502538341C6FD7C87D2AC4A41CDB8303F02538341544526F2C7AC4A4108223AEF015383413C0A717AC1AC4A410DB3BD97F95283419F29AB023CAC4A418490B756EE52834148DBE1538AAB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '434', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_689', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.546295', '1', '2024-03-05 09:05:19.546295', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏程度:轻,道板砖松动一块', '689', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_519', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.368972', '1', '2024-03-05 09:05:16.368972', '1', 1, '320211', NULL, '1', '0102000020B01100001600000060762FB947538341CD045C63899E4A41BF2FB82D49538341467E901C939E4A41E8856B384A5383410FC84C58979E4A41C3AA49564C538341464D4D509B9E4A416568DB7A515383419B7C058AA09E4A412E6FFE4A585383410527A4E3A69E4A4172CF20255A538341E74B8201A99E4A41B3ECA9935E5383414A04D996B39E4A416F3666CF625383411E40CC65D49E4A41397378B467538341F26DF6C7119F4A41CB1A01A66A538341B0C91E46419F4A415ACB346770538341D8A7B11E909F4A41BFD001177253834199B25E47A69F4A4115CF791975538341CCCB7300C19F4A4123B2AD597B538341A4C39B84ED9F4A41F17B6B02895383419037BAA553A04A41C299B86E8C538341978CBF537CA04A4106C7415A9253834170B0AAA1E5A04A41636DF9BF935383412455BFE1FCA04A41C313B12595538341D1EDC1B512A14A41C9F00A2897538341554592B62BA14A41EA598F419853834176F52C0836A14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '519', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_525', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.373035', '1', '2024-03-05 09:05:16.373035', '1', 1, '320211', NULL, '1', '0102000020B01100000600000056CDA22CC352834178C7F52E29A64A41D938F8D5C3528341FFD420BACAA54A4183953C90C45283412969F0B75DA54A410A40B415C6528341669BE1906AA44A41BADB1AACC7528341D2057D2EB0A24A411B568144C852834140E36A8605A24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '525', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_431', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.376955', '1', '2024-03-05 09:05:16.376955', '1', 1, '320211', NULL, '1', '0102000020B0110000080000008442777AA75383410312498061A54A41023BA28BA95383419D70C5D968A54A417D3FB568AA5383418BF6B17F66A54A412A5D4885AB53834197BA3F5360A54A411C7094FDAC5383415A8AA67255A54A410883E075AE5383419372E7D549A54A414512FD81AF53834141BD4DFD3AA54A411987FD7BB25383410999F9FCFDA44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '431', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_441', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.380694', '1', '2024-03-05 09:05:16.380694', '1', 1, '320211', NULL, '1', '0102000020B01100000500000061FF33E588538341AD48404486A34A4156E1FDAC8E538341AF1D2E0DDAA34A416C24E3059B538341056BBBA9A6A44A41019B254D9D53834165ED76E1CCA44A41CCE55F55A75383412823B17560A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '441', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_415', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.387681', '1', '2024-03-05 09:05:16.387681', '1', 1, '320211', NULL, '1', '0102000020B011000005000000E33C65AEAF53834148B5A6D862A24A41C8E8A782A3538341E8B15A89A5A14A41EE0663D09E53834183961F3669A14A416F9F84B69A538341C25A2C6748A14A41927AA6989853834196DAD4DD37A14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '415', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_446', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.391463', '1', '2024-03-05 09:05:16.391463', '1', 1, '320211', NULL, '1', '0102000020B01100000F00000062C36F78F45283418441EA2128AE4A415F76CBF1F052834152240131E8AD4A410340B897EE52834140B603BEB9AD4A41B22A9B10EB528341FA89AED570AD4A41445B456DE7528341CAFD6A472AAD4A4111656100E55283413578BB3C05AD4A41C9B44477E2528341A50CCBD6E7AC4A41B94457DBDF528341A4815E07CBAC4A4189DD8FF9DE528341BCA98B08C1AC4A41B4DE8FFDDC52834197BB3CC0A7AC4A41CAD56943DB5283410F504C5A8AAC4A41BA32013CDA5283418F7D362078AC4A4192D55F18D952834121ED0C8C63AC4A413FDDB4C7D6528341D13165CE2FAC4A4139DDB4C7D65283414F51E1372FAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '446', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_579', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.395183', '1', '2024-03-05 09:05:16.395183', '1', 1, '320211', NULL, '1', '0102000020B011000006000000FE150E878353834111027402F3A94A41E88B7FC58053834195A2FEF5DCA94A411666E7D47D5383416B410F80C7A94A41BBC303E57C5383415B5747AEBEA94A4174BF6B737A538341A2124EFBAFA94A418EEF9AE378538341C9F7D1A1A8A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '579', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_538', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.398999', '1', '2024-03-05 09:05:16.398999', '1', 1, '320211', NULL, '1', '0102000020B01100000D000000D2724A9A475383412A3AEB9EE6A34A41126151D84153834151851ED794A34A4158E49E51415383415ED22D4590A34A4186C241F54053834180CD92588EA34A418AFB39C340538341A3A625968EA34A41D9B1417640538341E74FE04E8FA34A41D87E873C405383412DD7C83192A34A41CD4BCD024053834146851ED794A34A419E40AEB93F5383415E0837E499A34A4135A77F8B3F538341AF77B3049DA34A41213BCD833F538341613E4083A3A34A416FEB96A23F5383414779E40EAFA34A41682F51DC3F5383412C9769CEBBA34A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '538', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_566', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.402959', '1', '2024-03-05 09:05:16.402959', '1', 1, '320211', NULL, '1', '0102000020B0110000100000001362F85CD75283411F24B40CB7A24A41B0E791C4D65283417B3DE32D9CA34A41A89B4D89D65283417973FBAED2A34A410FD79145D652834145822241F8A34A41DB4D1ABED552834159935CA42CA44A417C1FF860D55283418B5ADACB5CA44A410E4C2B2ED55283418D79DD9B74A44A4125F1D503D55283418C289166B9A44A41DFBF0017D6528341B460BCB8FEA44A41CADDF0ABD65283413A63A9511DA54A4109676833D75283419501D2CB4EA54A41307EF961D7528341D06EB77988A54A41471682D8D7528341A0F573BC10A64A418BF85FFAD7528341448311E62EA64A41451682D8D7528341AE7180FC6FA64A41D40393C9D65283416095B00D5DA74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '566', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_582', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.407086', '1', '2024-03-05 09:05:16.407086', '1', 1, '320211', NULL, '1', '0102000020B011000019000000BCE5BF4017538341F750138E27B24A41F2F1ACE2165383415B8DFE5315B24A413FB8D2A01653834159B1A4DEFAB14A416C990A46165383410D66ED96DCB14A41687F692016538341454D6440BCB14A41697F692016538341B3C07D07A0B14A41553CEE3716538341999FE6C35EB14A413E9C5641165383419F63D32616B14A41303F3A3316538341D5640975FDB04A41B3DD0A48155383415DC980CB9EB04A41F84B27D714538341F6AA98A27AB04A414C36147914538341CFA6112C6AB04A4147A2E40E13538341E7F75D6125B04A411DB872D811538341C2686A1BF8AF4A41E5D9EDC210538341151F2D3DD9AF4A4158DCB427105383410EF9F23ECAAF4A41C2EF7B8C0F538341A3D81713BFAF4A41D2D71C350E538341CE8860BBA8AF4A418B5CBDE5085383412CCAEE3B64AF4A4105F185BF05538341ED8FD0E637AF4A4160DE39C8035383417AE136261DAF4A417BC48EF800538341CC20D2A3F1AE4A41CC8D7B1DFF5283415B0E65D4D4AE4A41DDED5E92FD5283411B20168CBBAE4A41FFBF46E3F9528341CD42504F80AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '582', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_594', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.411151', '1', '2024-03-05 09:05:16.411151', '1', 1, '320211', NULL, '1', '0102000020B01100001300000025DDBBE83C53834126F66CAA649F4A418128D5933A538341D07647004B9F4A419F8E5D8D3953834154E745183F9F4A4106C1F67936538341CF0B7523209F4A41833C21123553834199DC9515169F4A41F8AA294B34538341A3096252119F4A41815918603253834149FF6062099F4A415BB7201A3153834163DA8244079F4A4165BB97A92D53834114A72CA7009F4A4102DC6C172C53834164341BBEFD9E4A41CAED30962A538341C76F5F7AFD9E4A411C786C1D29538341CF1DB51F009F4A41F421B91228538341A867715B049F4A41921CEC62265383417584615A0D9F4A41BE43528024538341FCEA0D951A9F4A414177AF6C1F5383410DB078EB3B9F4A4146F96AB41D538341BDF14608479F4A41746C150D1C5383415885BF7F4F9F4A4140A47BA91A538341AF9337FF539F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '594', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_453', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.415371', '1', '2024-03-05 09:05:16.415371', '1', 1, '320211', NULL, '1', '0102000020B01100000B000000DF8732E83C538341D1294C65669F4A41933966AD40538341044374E7939F4A41C3E212E44F538341ABCE05DF5AA04A416C90CF195753834156382310B9A04A41E558F6EC65538341AA17607890A14A41F26E06CE8653834126CAA99A5FA34A41653D2A929353834189C4D5EB2CA44A4151BACD019B538341D16804CFA6A44A41A6F19A2E9E53834198F0C6AADAA44A41DA40241AA45383411ED95A7331A54A414061391BAC5383411515091FA3A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '453', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_458', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.419325', '1', '2024-03-05 09:05:16.419325', '1', 1, '320211', NULL, '1', '0102000020B01100000800000084D07E0CDD538341FD21208E7CA74A41BE121517D353834126FED92F1EA74A41925B1E4CD053834181FB2A1501A74A41995FD1E1C75383414D846200B2A64A41C033E449BF5383413A22BD3664A64A419788D0F5B9538341AFA3445A36A64A41493812CCB45383418BB7E81404A64A4135E767F6B0538341D6162E6CDEA54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '458', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_455', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.423167', '1', '2024-03-05 09:05:16.423167', '1', 1, '320211', NULL, '1', '0102000020B01100000E0000002AD52A155253834188EE703D15A64A41A9AC50545153834101E0E8D6FCA54A4121FE7FC250538341256F3BACE7A54A41D2FB33C94F538341BD244119C9A54A414133C2114F538341DED489C1B2A54A41D76C173E4E5383419752A4789EA54A41AAEBAE364D53834125A184118BA54A417455B8E84B53834148D36EE770A54A41D544B8694B53834130B9AF4269A54A419E85E7584A5383416683B78F5AA54A41FD729B6148538341D332438344A54A4103CE6BF746538341EDAB5D2A38A54A41ED07C1A445538341E8C195582FA54A41DC8CDCC03E53834101FBB65C0CA54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '455', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_470', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.427155', '1', '2024-03-05 09:05:16.427155', '1', 1, '320211', NULL, '1', '0102000020B0110000060000005CECD94D775383419696DC77FFAB4A415B278C5B74538341E069660724AC4A4130613E6573538341F7D5784537AC4A41B2F5E8BB7253834161AB71664DAC4A410D9BF06E72538341F35B5E0970AC4A417C525582705383419545A6C328AD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '470', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_690', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.54988', '1', '2024-03-05 09:05:19.54988', '1', 1, '320213', NULL, '1', '0101000020B0110000CC833B3AA7528341350F27406BB04A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾堵塞', '690', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_691', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.553701', '1', '2024-03-05 09:05:19.553701', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '691', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_460', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.436851', '1', '2024-03-05 09:05:16.436851', '1', 1, '320211', NULL, '1', '0102000020B01100001E0000006E715038C15283411816DD49179F4A41F1121DEEBF528341339766B21E9F4A41022D61ACBE5283414518F01A269F4A41465E3699BD528341EB04CF2C2E9F4A41BA93CBA5BC528341C4A37A73359F4A4126B68FA3BB528341B849E2F93E9F4A41E3E0D3E0BA528341FB23D2FC459F4A410073ADA7BA5283414F5B9F29499F4A41EE756037B9528341F1EDE5C15A9F4A41EE363E5BB85283411642A3ED669F4A41119DC654B7528341BBD4E985789F4A413C8806B6B6528341F3DA73E6839F4A4179BF8A52B6528341B59EFD4A8D9F4A41F98CA8D5B5528341E7CDDC58979F4A4191C6FD01B552834174DAF019AE9F4A418B67E8B7B452834163D202FBB49F4A41BB8B9B45B45283419A525A84C59F4A41601135ADB35283418D715D54DD9F4A41C439A85AB35283414EDB4E3FF09F4A416C1E570CB352834170D9EA8002A04A41FA4A8AD9B25283419DD30F3318A04A41F324E8BBB25283413B6656CB29A04A41EC1117ADB25283412E7D6B7C48A04A411316D7CCB25283417EFC902662A04A41D2CB8121B3528341CBA3D99E83A04A4192FF702EB5528341A61CCD7428A14A4180E52C70B652834149FF85EF94A14A41399BD7C4B6528341D22A9D80C3A14A413D9BD7C4B652834135FA08C7ECA14A410312603DB65283419002FE849DA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '460', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_445', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.440808', '1', '2024-03-05 09:05:16.440808', '1', 1, '320211', NULL, '1', '0102000020B011000005000000EDF9D3922B53834199F2EE552FAA4A4180F832EA2C5383419A314D382BAA4A410C8975332E53834128248F8B27AA4A415CEF3C9230538341C621BE7C25AA4A4162F8E76133538341158C421B22AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '445', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_573', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.444655', '1', '2024-03-05 09:05:16.444655', '1', 1, '320211', NULL, '1', '0102000020B0110000030000006E87C8A38A5383411AAB477E2AAA4A41EE0B9E0B8C53834177F5868604AA4A41200104AC88538341D4420B3FE4A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '573', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_572', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.448449', '1', '2024-03-05 09:05:16.448449', '1', 1, '320211', NULL, '1', '0102000020B01100000600000052C17A6C415383410E3FCA9504AE4A418A8D8B5F3F538341BF87A29A1BAE4A41937B35C0395383417B8012A164AE4A4149EC01FD3453834179B04FD4B0AE4A41E56633E02953834147BD6A347FAF4A41E71A64D316538341CA63E0F8F7B04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '572', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_440', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.452169', '1', '2024-03-05 09:05:16.452169', '1', 1, '320211', NULL, '1', '0102000020B0110000040000000E104DED5F538341769AD86B83AD4A41F4A019245E538341F52D51E38BAD4A4174FA182E59538341717E4692BCAD4A41DC8DB0B747538341B1F7E87A82AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '440', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_568', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.456076', '1', '2024-03-05 09:05:16.456076', '1', 1, '320211', NULL, '1', '0102000020B011000024000000279B70B9175383416F7582CE12A24A415617C6E1185383412C6A4FFF13A24A415E40641F1B538341FD5E1C3015A24A41873AFEFF1D5383418BA11C2C17A24A41B880DC1B215383411FE41C2819A24A41E49A696A235383417D9DA59C1AA24A41469314BB25538341807450EF1BA24A415CF821452A538341EE0484B61EA24A4175DB738730538341493C51E321A24A41B2C9AF0832538341AF4E40F222A24A413061567F33538341899C73BD23A24A4101DBDA173553834180430D2324A24A4164BA05AA36538341E355FC3125A24A410E4C46013B5383411E5DB87127A24A41EB0B60253C538341C77ADA4F27A24A41B6B1358B3E5383410D860D1F26A24A4109716DAF405383414E9140EE24A24A41FA7CCB0E42538341EFAE62CC24A24A41916DD81F4353834106AF62CC24A24A418B7387CF4353834195F5D95723A24A419F1EE15444538341DF0484B61EA24A419E6A2590445383415A443F021BA24A413C6E03B0455383415AA380EA04A24A41649E149D46538341154C7E0EF3A14A41F142DD72475383417590E2C8E2A14A41AC4A7BB24853834184CA4593CAA14A41E625E6244A538341EBEAFD0EAFA14A41226066E14B538341D7CC2C1E8EA14A41C389E61E4D5383417A72E59176A14A41B9BBE69B4E5383412D9ED0DC59A14A41626A1E4150538341EAA4DD093BA14A41A1CA401B525383414D9D72B717A14A415401E3B752538341942B93AD0BA14A41DEBE2B4C545383410A276D0BEEA04A411CD309EB55538341AAA402B1CEA04A4189F8C9085753834198818851BAA04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '568', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_416', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.460038', '1', '2024-03-05 09:05:16.460038', '1', 1, '320211', NULL, '1', '0102000020B01100000600000052C106C34C538341832236F940A94A41279AA0A54E53834102AEC05150A94A41C628E5DC50538341D29DE4135EA94A412260B20954538341CB434C9A67A94A41D69C4CE6585383419E33705C75A94A4140754D595F53834162F6C7E187A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '416', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_505', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.463876', '1', '2024-03-05 09:05:16.463876', '1', 1, '320211', NULL, '1', '0102000020B01100000C00000057C50DFA9B538341C27F8E7B4DAA4A41AF3F74929C538341C633BF6E3AAA4A417C4163229D538341BD14BC9E22AA4A415D9CB84C9D538341DC4976FA16AA4A418CD9EB989D538341105A523809AA4A41205263A19D53834130E9A40DF4A94A418FD9EB989D53834147A5C31FDAA94A41215263A19D5383415A61E231C0A94A41743441C39D53834177C368CAAFA94A41C0161FE59D538341010B1235A5A94A417773639F9E538341C76297DD8CA94A41EEAD757CA7538341C283A6DFFBA84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '505', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_452', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.46827', '1', '2024-03-05 09:05:16.46827', '1', 1, '320211', NULL, '1', '0102000020B01100000500000088CA1AFE4E53834161AD52F97EAA4A41AEE5F72D485383412C7D3B5858AA4A4100CC4CDF44538341CADBD3E146AA4A4192254CE93F5383410BF49D3E32AA4A4145B23AFE3D5383419A0E7B6C2CAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '452', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_604', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.472122', '1', '2024-03-05 09:05:16.472122', '1', 1, '320211', NULL, '1', '0102000020B01100000A00000091883D47BC53834148A05478E09F4A41CC3950A9BA538341A85C4E956A9F4A41D33E6388BA538341E8C123114E9F4A41D781DE70BA538341B8303DC8399F4A41F9217667BA538341F27ED9450E9F4A41F5402A6CBA5383412749E192FF9E4A411F243D4BBA538341E58FCD48F59E4A41F713B8B8B7538341FCCF257BC99E4A41F013B8B8B7538341B5DFE32FC99E4A41F586E7A5B7538341D48D39D5CB9E4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '604', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_468', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.475897', '1', '2024-03-05 09:05:16.475897', '1', 1, '320211', NULL, '1', '0102000020B011000006000000B4E4506D2C538341E68389D5E5A54A41796A12E12853834154977A96ACA54A4184FF199627538341E7BBEB3796A54A418705582A27538341DE5AA5008FA54A410D71ADD327538341FAE5C2DC85A54A415292ADD128538341AB403D1D79A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '468', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_512', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.479848', '1', '2024-03-05 09:05:16.479848', '1', 1, '320211', NULL, '1', '0102000020B011000036000000712F26FC79528341217B29FB88A54A4153C8E32F7A52834135368E3A6EA54A412CC1096D7A528341BB51253B69A54A419387B4407B528341AD42822D5DA54A412D7FAF6A7C528341213A6DEF4CA54A41D70A5F957D52834153D5A51548A54A4173A1D5247E528341BE42B87746A54A41019F0EC07E528341A2BDB77F42A54A413039F2307F5283418DFC15623EA54A418A2F5109805283418E494D9831A54A4149C1347A80528341743AAA8A25A54A4111BA5AB780528341AFF6D8831FA54A414FCEC71781528341DDB2077D19A54A4113DA39CD82528341E55F936807A54A41336F2D378252834196BD160F00A54A41030C58CD8152834121FAA3E2F9A44A41544AC05781528341A75F8663F2A44A418FB3C90781528341E3FD7B46E9A44A413E1E79B58052834196E02EDEDFA44A41EC15F975805283418014A022DAA44A41B320401A805283418840B28CD4A44A4142C8B1547F5283416B05FD14CEA44A41BB3DA8A67E528341D649E9C2C7A44A41FFFB4DA67D52834108486254B3A44A418DC1527E7D528341F6BA0282AFA44A414183EAF37D52834161A9BD5E9BA44A412EE473647D528341ACDC13FCA1A44A41F4CF06047D52834163467DF3AAA44A41B6DA4DA87C5283415CA7CA5BB4A44A4106E2A72B7C528341EB398900BCA44A418CF0DB717B5283410CDDC20EC3A44A4126613FA57A528341E115A777C7A44A41B76386CA7952834100C4FC1CCAA44A417A86277179528341C57A6E51CCA44A41D57527F278528341375FD750D1A44A414C593A527852834150E11A8CD9A44A41C10C99AD77528341E647C7C6E6A44A41844794567752834174CF98CDECA44A418BDFAB8E765283418551DC08F5A44A410817358274528341F5E0DDF000A54A41C922A2E27452834155C2B82C04A54A41D983AB13745283416062357E0FA54A417E19FCE6735283413B5F78C113A54A41847B2BD473528341C043E1C018A54A4190441DCD735283415F79086D21A54A41D0217C267452834193F3ECCD29A54A410AAA3E30755283415E0090D339A54A41F5D0F787775283417F8BCDA95CA54A410A8F221C78528341BAF2659263A54A413AF2F7857852834139E2EA2864A54A4145E0D61E795283411C0B40D662A54A41DFCC0FBA79528341F7CF8A5E5CA54A4154D635767A52834191A4939B55A54A41001D1E407A52834121DF2D6C68A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '512', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_437', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.484042', '1', '2024-03-05 09:05:16.484042', '1', 1, '320211', NULL, '1', '0102000020B011000006000000746FF3250E538341A49E1A8EA3AA4A418E26F49A13538341BFB9027C7DAA4A410DC2FD48145383411EDDF85678AA4A41BCFE446A155383418CDF9A6C80AA4A41AF279A17145383410E1A353D93AA4A41A2B3148B0E538341DF24E53FBCAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '437', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_584', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.488372', '1', '2024-03-05 09:05:16.488372', '1', 1, '320211', NULL, '1', '0102000020B0110000020000004E929C794D5383417CA1520689A44A418559B81049538341D2E2E08644A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '584', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_585', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.492335', '1', '2024-03-05 09:05:16.492335', '1', 1, '320211', NULL, '1', '0102000020B011000014000000068C1840F35183411D95C11539A44A410A4DF663F251834133CF2A9446A44A412661A974F0518341C20C822155A44A415F9F392EEB518341137A67CF8EA44A413301B977E6518341CEB1F9B1D8A44A417681852FE45183414BEBD9AFEAA44A41ABF8A617DF5183417C12CB9EFBA44A41FC7CEA5ED95183419839BC8D0CA54A411D103F95D35183413419041228A54A418F9B3E1CD0518341A6F05D774AA54A4104593E20CE5183416E591D8366A54A412B8DC69CCB518341E14F7AB8A0A54A419CCC81E8C7518341E8F0641602A64A41FFE84DA6C2518341A3FA0E807FA64A41F03E6F90BC5183410CF4023E30A74A41F4EDF614B651834171B01D7214A84A418008D442B05183416DAC163F45A94A41CCD4E435AE51834132C3837CFAA94A4198CD28F6AB518341EEA90181D2AB4A413214A081AA51834188566A63CCAD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '585', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_456', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.496413', '1', '2024-03-05 09:05:16.496413', '1', 1, '320211', NULL, '1', '0102000020B011000009000000B1416A6F5F5383415CFE7D1C88A94A4176EE69F45C5383417E066C3B81A94A41C813E1815A538341CA97D1E17AA94A41DAD83535565383414408D0F96EA94A4155081C925453834183BE13BE6AA94A419349C66D51538341DF53F0F360A94A41D5EF34434F538341F788AA4F55A94A41596B5FDB4D538341B08220EF49A94A412815ACD04C538341EE6530F040A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '456', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_487', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.500987', '1', '2024-03-05 09:05:16.500987', '1', 1, '320211', NULL, '1', '0102000020B01100001900000048FE35E1D25383411D93B52E669F4A419AAFCD58D2538341AFF7CDF5499F4A41D1D55B20D2538341BBF289CA399F4A41F07F19D5D15383414EFEC008299F4A411E87F397D1538341972531551F9F4A4173522C35D1538341780B72B0179F4A41C21D65D2D053834175AE09B1129F4A410AAB3566D053834185CFFF83119F4A413D986E03D05383417C7E12DE139F4A419344F39BCF538341E44CA1A1159F4A411736BA00CF5383417B7E12DE139F4A4167C89D73CE5383417421AADE0E9F4A41A46F0F2DCE538341F4C5BB48099F4A41C919CDE1CD538341BE62D9CF0C9F4A41FCAD77B7CD538341D7EF38A2109F4A41483B484BCD5383410A4CE4EC159F4A419579B0D5CC538341D7D90074199F4A412F212210CC5383416456E5DC1D9F4A41684CC3B6CB53834173D443AF219F4A417540D695CB538341F32F3245279F4A418F34E974CB538341B39C58F92B9F4A41A6B5CC66CB53834117C84FBC329F4A417A5F8A9ACB53834139593605479F4A418EC818DFCC53834182DBBCBE9D9F4A41754735EDCC5383413A9A8DCD9F9F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '487', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_436', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.504998', '1', '2024-03-05 09:05:16.504998', '1', 1, '320211', NULL, '1', '0102000020B011000008000000F15D1D6F435383418716274322A54A41AB13C8C343538341FA10C8701EA54A4106CDDFF943538341956B8E5A1BA54A41F96AB00C44538341762C5F7119A54A41FE6AB00C44538341905871DB13A54A418A9ED1F2435383415C3BF57910A54A4116105BE243538341988483450EA54A41DE605FC040538341092BE6A4E3A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '436', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_580', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.508875', '1', '2024-03-05 09:05:16.508875', '1', 1, '320211', NULL, '1', '0102000020B01100000C000000D7C54BA63A538341B982B613CDA44A41FC291294355383419F8C08F1B3A44A414C80D42035538341359D835AB3A44A410660FADE34538341E03D1B53B2A44A41B208129634538341BE1C2580B3A44A4155D570703453834161044B3CB4A44A410104FF3734538341E4E8B33BB9A44A41826E2E2534538341EFBF5E8EBAA44A4163367AA133538341A561C040CEA44A41F939E782335383412528F029D0A44A411EDF9158335383410A6F7EEDD1A44A41E1B2CAF532538341B02D4FFCD3A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '580', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_533', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.513514', '1', '2024-03-05 09:05:16.513514', '1', 1, '320211', NULL, '1', '0102000020B0110000090000008B9166F644538341DA881A7B2CA54A4142942DDC43538341CCE967E335A54A4136BEA84543538341AC4E2FBD3AA54A418F1BC5D44253834156A57B353CA54A415A81E16342538341D525DA0F3CA54A414CA2B1FD3E5383411C54EC8132A54A419D35B6D73D53834110C78CAF2EA54A41445DEA9C3D538341B06724A82DA54A41279FBF083D538341BBDAC4D529A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '533', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_507', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.517312', '1', '2024-03-05 09:05:16.517312', '1', 1, '320211', NULL, '1', '0102000020B011000009000000191C588A36538341FEB236BC13A54A41FC88CE1B3653834186416EEA0AA54A4134090C12355383416B69F9DDF4A44A41CF7FA8E0345383418B043204F0A44A41E4B123C9345383413DA886B9EAA44A41F98682A334538341935C56D8E4A44A41120866953453834100BF7B9CE1A44A41AE9DB668345383419DB1BDEFDDA44A41D84ECE1F34538341D3AC1BD2D9A44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '507', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_457', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.52101', '1', '2024-03-05 09:05:16.52101', '1', 1, '320211', NULL, '1', '0102000020B01100000E0000006820117E3253834180AAAC4FA3A94A41376E4449335383419518F0221FAA4A41BED999F23353834138EA6E3A57AA4A4116BC77143453834100CCC98F81AA4A41AABF553435538341B2786A89B7AA4A418EA51176365383413C6FC7BEF1AA4A412FA9EF9537538341CB9ADE4F20AB4A41E99DBCC638538341B5FDC20D52AB4A414457453B3A5383419D060F528DAB4A41775E017B3C538341B19EAD6BB3AB4A4176DC45333E5383413E7EF5EFCEAB4A41F886BDB83F53834140245D76D8AB4A41039D8AE741538341BA364C85D9AB4A41BA8DE08846538341930F5B96C8AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '457', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_521', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.524861', '1', '2024-03-05 09:05:16.524861', '1', 1, '320211', NULL, '1', '0102000020B01100000600000030CD8E1080538341ECA812FA2DB54A41C8C87B337F5383419374F2A212B54A4123FBF69C7E538341EEFEA25AF9B44A41AFCD09FD7D53834189B4A8C7DAB44A41120085667D5383415804BFAEAEB44A413D0513B17B538341CC39D3722CB44A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '521', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_447', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.528788', '1', '2024-03-05 09:05:16.528788', '1', 1, '320211', NULL, '1', '0102000020B01100001E0000002A0EBD15A4538341BB8CBC9EC8AA4A41B751B3EAA1538341B51788FDA2AA4A414E117AD29F538341E8FEFEA682AA4A41082EE2DD9E538341B42A6F0371AA4A4109D3079E9D5383412C5859C95EAA4A419BB9667A9C53834152E0747052AA4A414CCCA8C79B5383412E66C7254DAA4A41EAFC34A19A53834187760E5B48AA4A4185553ED29953834176760E5B48AA4A4140BFC26E97538341DF449D1E4AAA4A4150AC76F695538341E014A64B4BAA4A41801F214F945383419FB1C3D24EAA4A41B205FB9492538341D6800F4B50AA4A41D0167600915383410E505BC351AA4A4196083DE68F53834112A148694FAA4A419601DE8E8E538341D414A64B4BAA4A417CC8034F8D5383414D1A631043AA4A4163173C7588538341CED69FAB1BAA4A41640026B2865383419DB122620CAA4A413402C28683538341FC3BD319F3A94A410ED32B097D538341388A01BEBFA94A416429E9407B53834110C2EC73B5A94A41D0C7344079538341E129CFFCA9A94A41DE2718B577538341416BFEEDA7A94A41986092AD6F538341805B4039A8A94A41C9D33C066E538341AE5A8384A8A94A419A49292F6A53834123DE9E1BA4A94A4168324545665383411A513F49A0A94A41296E615565538341F481F3D09EA94A4119FADBC85F538341C520045B89A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '447', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_593', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.532682', '1', '2024-03-05 09:05:16.532682', '1', 1, '320211', NULL, '1', '0102000020B0110000070000004576CA62EC528341763A2B7EB1A64A41BBD4887E005383413E0EBD66F8A64A416EC5DE1F055383414C5A8C730BA74A41883412E9065383410F4AB03519A74A411FDAE0FF145383417152A5F3C9A74A41E5E47A5F18538341976BCD75F7A74A413318D1FC1E5383416A6F9C918AA84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '593', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_486', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.536476', '1', '2024-03-05 09:05:16.536476', '1', 1, '320211', NULL, '1', '0102000020B01100000D0000009D9E3DE9EB528341A95DB8D4AFA64A41597DB219D8528341369427DC70A64A41299A1747CE528341B4BCCD764EA64A41A8957C76C3528341B7242F5D28A64A41EA226B8DC052834100E360401DA64A41B9E135E0B05283415117BD76CFA54A418B77AB85A2528341A8F96E5284A54A41D974FF4498528341883ADF494DA54A413EDD0F3E935283414D9264F234A54A413DBE973F8E5283413D7361221DA54A4105B7DBFF8B52834160A81B7E11A54A41F6A00ED1895283412B4C70330CA54A41C6C61ECE82528341FDCAE6CA04A54A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '486', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_534', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.540396', '1', '2024-03-05 09:05:16.540396', '1', 1, '320211', NULL, '1', '0102000020B011000008000000B3BB0AAEEE52834162917E78BCA24A410D12E38AE15283410F14DD5AB8A24A412333FEACD75283416F550C4CB6A24A4182408C76D652834172550C4CB6A24A4100A166D4B45283419749B53F9FA24A41E39494D7A952834162ED09F599A24A4199899D0EA6528341796EEE6D96A24A41577EA645A252834102B697D88BA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '534', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_522', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.544258', '1', '2024-03-05 09:05:16.544258', '1', 1, '320211', NULL, '1', '0102000020B011000017000000E57FEDF0EC5283417FDB8239ACA34A411C80F79CEC5283413FB9C5DC5FA44A411780F79CEC528341B83AEE7074A44A41E00160A6EC528341C348FD3DA5A44A417995993BEC528341825F340221A54A41987E79CCEC528341737F7CC80AA64A41D0FC10C3EC528341F2C6C6A342A64A41A5A32513EC528341E586A4EAA7A64A4108D18D9DEB528341BD9411AACCA64A4126078FCCEA52834105C19D2111A74A41B36939A6E85283410765D6C59CA74A414AA1A252E75283415BE92249EFA74A41C24FEECEE652834129C6397309A84A410480A254E65283419ABA02351AA84A413731B5B6E4528341876F8E6B4AA84A41CB4B56DEE3528341037E16D262A84A41285A0A64E35283417B5CA7657CA84A416AC31314E352834130DD124591A84A41A0EEB4BAE2528341CE8ED4B9B0A84A41928772EEE252834158FC5893F7A84A419FAB39D2E2528341965611DB15A94A41D92EE4A7E2528341D4F2B5C831A94A4111793953E2528341AA0B3F1F52A94A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '522', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_600', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.54823', '1', '2024-03-05 09:05:16.54823', '1', 1, '320211', NULL, '1', '0102000020B0110000020000002A551CB285538341A416D69B82B54A41D48ACB53935383414E3FF1AE1FB64A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '600', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_543', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.552076', '1', '2024-03-05 09:05:16.552076', '1', 1, '320211', NULL, '1', '0102000020B01100000F0000003E7024B13D538341675EC90D29B34A414AA3E82D3D5383411BB2D72614B34A413B0B60B73C538341D1DC909200B34A410ACE2C6B3C53834117C41723F4B24A41DB90F91E3C5383419C34163BE8B24A4164978ACE3B538341605B5817D8B24A419ABB3D5C3B538341F3D7BBDDC1B24A41B03A46143B538341D70A6368A7B24A41129C2CEE3A5383418587C62E91B24A41A8EE01D93A538341D1F9280573B24A416132C6D43A5383411F5C5711CCB14A416132C6D43A5383419D0B62629BB14A41E35EF9A13A538341ACF44CB17CB14A411DA94E4D3A5383415B9E7CB461B14A41E7F934A83953834138FEEF7B42B14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '543', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_692', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.557797', '1', '2024-03-05 09:05:19.557797', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,泄水井盖缺失两只', '692', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_590', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.556095', '1', '2024-03-05 09:05:16.556095', '1', 1, '320211', NULL, '1', '0102000020B0110000030000008B3E0319CF5283414F84201200A04A4119353408BE5283417C4FB69DDE9E4A410DF20FCBAD528341E918E86ACF9D4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '590', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_605', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.560051', '1', '2024-03-05 09:05:16.560051', '1', 1, '320211', NULL, '1', '0102000020B011000009000000A64F1CC8D55283410546F96075B34A416052CFC9D8528341CB55CD4545B34A41790C5B50DB528341F37372F01AB34A415AF9897ADD528341443E0CFCE6B24A4171C4FEEBDE528341FD4DE0E0B6B24A41839BA93EE05283412B6C858B8CB24A418B616BA6E25283419A54C4412EB24A416D5AD0B1E45283418DD1AD83DBB14A41366E6C9EE6528341F5F0554D7BB14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '605', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_488', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.563755', '1', '2024-03-05 09:05:16.563755', '1', 1, '320211', NULL, '1', '0102000020B01100000A0000000D6D770BA35383411A3A544BA69E4A416D57434C9C53834166FFC5407F9F4A41B162761B9B5383411C06FFB3AB9F4A41C2BBDCB59A538341CB0C3827D89F4A413E8FA9E89A53834133C011943AA04A418771870A9B538341F8B8819A83A04A416A8098F99A53834158D4BCEDBFA04A41B062761B9B538341FD8E2654D9A04A416B41761D9A538341505E929A02A14A41AD0D871098538341AFD3656735A14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '488', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_439', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.567919', '1', '2024-03-05 09:05:16.567919', '1', 1, '320211', NULL, '1', '0102000020B01100002300000011D2EDF201538341E2112D084C944A41C7F8BAA00453834192B10A2E4A944A410BEDEE610A538341830BA3A740944A416473B3590C538341EDF1F7583D944A41A1C7D7171C5383410708AFE419944A41128A36EA23538341F6BBDFD706944A41D25AE2AD2C5383416582FFD9F4934A4113CB64483F538341B22F0DFDDA934A419487326D46538341D0F8D83FD3934A4119A9C48B4E53834180943FD6D4934A4117BB1A2B5453834176677399D9934A41533360565C53834113A5CA26E8934A41118DD37E5E538341B888FE68ED934A41106A2D8160538341A002CC91F2934A418D36D09465538341DB0068D304944A41D4BC948C67538341AC6D238C0A944A41567962B16E538341866AE48F2A944A4103930D0072538341CC43A2B33A944A418DD1966C7753834148711D0357944A4187CFA08D825383411A1858DD8F944A413E05114B8C5383410A7B3C9BC1944A41A8B76FA092538341D0B62F6AE2944A412BECD2CD9A538341381102C80C954A41C13D2D49A05383415AA8E33029954A412BF7891FB85383410ABC6A49A0954A4131A52106CA538341A33351E7E1954A4150DEDDC2CD53834157BDECAFF0954A419A64A2BACF538341E0D2206FF7954A41A137D67DD45383415FB39AD209964A41F31CB0BFD65383418661F0770C964A4189AA7987DE53834188BF8A5212964A41FF86F189E15383410E9A23B414964A41C83F98FEE353834190B136141C964A4162E75CF4E6538341F810270F27964A41814C6A7EEB538341BF3590FE3B964A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '439', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_581', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.572179', '1', '2024-03-05 09:05:16.572179', '1', 1, '320211', NULL, '1', '0102000020B011000022000000C2E902F67952834161E2D9EB01A64A4163F88B6C7A5283415EF0DA067CA64A41B3000CAC7A52834128D2355CA6A64A4101D036C17A528341913F6D84B0A64A41BDE521F27A5283410F41F637FAA64A41ECE7E8D57A5283419F56B5CC09A74A4173DEC2197A528341E64698884CA74A414863C39279528341AB488DD068A74A41D11622EE78528341B36790A080A74A4189FDA1AE7852834107B1C0798AA74A4115BC472F77528341B75B1CC7B8A74A4176545FE8755283417F4893B3DEA74A418C8B0B33735283413ED4D5B433A84A4194117DEE71528341BD74011960A84A41F6007D6F7152834186AAF9CB6EA84A414AF07CF070528341ACCD831297A84A413FB214E77052834182AA9A3CB1A84A41EA1C35D3715283419A1C1CA291A94A41AFCBF10E72528341A84EA7E8B9A94A419A26473972528341C2EB088BD5A94A4134635C00765283417DA4C1CF8CAA4A418BFFCFA5775283416B497ECDDFAA4A41C5BEA0B678528341472BD9220AAB4A410F6926FB7A5283418175468A5AAB4A41E580003D7B52834136917F9861AB4A41CF148D0E7E528341CDC232B6E4AB4A417302C98D8052834110F7191068AC4A41318BC21981528341D446625C88AC4A41A97534D181528341BE68B654C9AC4A41E8726DEB82528341E46359FA48AD4A4165BF0E9083528341EA63FA6A8BAD4A415658CCC383528341E1024E73C4AD4A41F0B0D5F4825283416642CDDF29AE4A4185AB68B581528341E9EF67A4DCAE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '581', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_429', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.575941', '1', '2024-03-05 09:05:16.575941', '1', 1, '320211', NULL, '1', '0102000020B01100000200000025595D6050538341CFFCAAAE0FAD4A41756F66164D538341A9BC109BB6AC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '429', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_517', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.579521', '1', '2024-03-05 09:05:16.579521', '1', 1, '320211', NULL, '1', '0102000020B01100000B000000381DA9842D548341DF505FEC39AA4A41F128252C2D548341B755FAD83BAA4A4109C64F432C54834102C38E0E40AA4A41E27676C02B548341413E411043AA4A4199A4CF842B548341381A13DE44AA4A41EB5AD7372B5483415CD49E6447AA4A4131FDE2032B548341E910047049AA4A4185E9C3BA2A5483414F572BE34DAA4A4112E7014F2A54834176A0055855AA4A41DBA509022A548341B1E4B8515CAA4A4112F05EAD29548341A22B1F4D66AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '517', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_425', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.58327', '1', '2024-03-05 09:05:16.58327', '1', 1, '320211', NULL, '1', '0102000020B0110000240000003168C7CF9A5383417A5A4E7155A04A418E1EF4198D53834132E62E9684A04A41C4260A4583538341CB961B39A7A04A411EEF8C2E7B53834197A7E81FC3A04A41FCB16D68795383412E86E160C9A04A41AA36751F77538341B03E38F6D3A04A41F1D0710F7553834177E93A69DFA04A41D1CC4A17735383417FEF5366ECA04A415AF6FC22715383412F045646FCA04A41CD9C61366F5383412888D4460FA14A413BE92A5B6C53834188996C442FA14A41758951596B538341C4438DF03DA14A419973CD816A53834131EEC5B949A14A414B9CC55169538341F8B01D3F5CA14A41056CDCEF6553834116CECF1999A14A41BD397C205A538341EA65AB2877A24A41D5A5924553538341A9F3EA4200A34A41D5ED522C515383416696FBAF2CA34A4174E92BB34F538341188AA9CA49A34A413F0A33704A5383418958135FADA34A410D672BD54953834142054D8CB7A34A4151CE172D485383416574101BDEA34A415EF8269745538341507D730F12A44A41A59BC4DA44538341FD80C4FF1FA44A4144CFDB7244538341EC20E4BB26A44A4155A0FABF4253834123D8B85940A44A41B34C1DA740538341E57CFBA961A44A41738542E13D538341E561BCFA95A44A4137EA6A77385383417C0065BAF2A44A41CB0E99AB355383415B18C9AE26A54A410A656A7F345383413424FBA840A54A416BD4ED6030538341DA8235239AA54A41FD7B698D2D538341FBBC06CAD5A54A414A6E8239235383418A7AB8879AA64A414ABAF864185383414635126C71A74A413E38DD4B0F538341329E9A6722A84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '425', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_420', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.587184', '1', '2024-03-05 09:05:16.587184', '1', 1, '320211', NULL, '1', '0102000020B011000008000000A9E17C3DFA538341371C4E9ADD9C4A418E6F4D1BF4538341506C34DC8A9C4A4121E71EEDF3538341086B9EAE829C4A4177F1E056F55383418BEB1FBE679C4A41A9C3AA75F5538341285E06C15A9C4A417CF1E056F553834149F8249D519C4A414C197C47F5538341A3192C5C4B9C4A41D7139B11F5538341AB6FA68C469C4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '420', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_577', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.591167', '1', '2024-03-05 09:05:16.591167', '1', 1, '320211', NULL, '1', '0102000020B0110000090000008A84B95D19538341C9E558953AAE4A414D79868E1A538341AEB09E3946AE4A4122C7B9591B538341907BE4DD51AE4A41648AAA4E295383418739C6D973AF4A41864ECD222E538341B9365C82DAAF4A41CE6FCD202F5383418ACCE7CAF1AF4A41BD55896230538341392DB9B714B04A4148C1DE0B31538341BC6699B526B04A41D354578339538341101079D138B14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '577', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_448', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.595096', '1', '2024-03-05 09:05:16.595096', '1', 1, '320211', NULL, '1', '0102000020B01100000A0000002A6D2BE997538341BB2FAFAF5DA04A418668A792965383412964FC03E39F4A411C19CE8E9653834199335968DF9F4A41E80771B19653834102556027D99F4A419B5169FE96538341FDB9DB57D49F4A41A701D63F975383414D8ED3A8D29F4A41B12E52E597538341DB0B86B2D19F4A415F2279DF985383415A7667E6D29F4A41B1F9800F9A538341FDB9DB57D49F4A41EC375A929A53834144549510D59F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '448', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_500', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.598853', '1', '2024-03-05 09:05:16.598853', '1', 1, '320211', NULL, '1', '0102000020B0110000060000009636C6849E5383413B7470254AA04A41B091788C9E5383416BEF93FFF49F4A41F658803F9E53834137881CAEE39F4A4153F8EC019E538341D074B0FBDB9F4A414698137F9D538341E89FED93D99F4A41A2EF9E0F9B5383417248DD35D69F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '500', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_424', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.602645', '1', '2024-03-05 09:05:16.602645', '1', 1, '320211', NULL, '1', '0102000020B0110000220000005DA0F8DBF9528341CD9ED3F580AE4A41D4F9F024FC5283419AC6AE795AAE4A415447B38CFE528341384730893FAE4A41A7D34E790053834180D1E77128AE4A41AD8C668A03538341A7EF8C1CFEAD4A41FF1976EC04538341E723CAD4EBAD4A41FAFBE2AA065383413204FCEDCFAD4A418749A51209538341A7DF921AB2AD4A411F6F86420C53834123A591397CAD4A41F58AA50A0D5383413DF7D0F169AD4A41D177D4340F53834114227B7B29AD4A4189A977D4105383417FCAD70EE8AC4A4127EDEB451253834112FFB771ABAC4A416696A6FE1253834160A9E0EB85AC4A41D703FFBD12538341EEE6E6005FAC4A41F370C8DE1153834167C9812C1BAC4A41452D0E26115383415B26005CF0AB4A412E61253F105383416B4940F3C7AB4A417DA0B87E0F5383417AA28929A9AB4A4166BD91030F53834102B429F594AB4A417DB2CF970E5383416BC9FEB974AB4A411D1FDFFD0D538341103B7FC959AB4A417F36844008538341187949567FAA4A41D404E1A006538341F44D79AF43AA4A4101E9C1D8055383419B5D4D9413AA4A41C9279B5D055383410F06AA27D2A94A41D021006D05538341920481EB8BA94A41508D551606538341DDB1786B4CA94A4177593EFD06538341721C626D19A94A413386BA2108538341BDC959EDD9A84A41DCB75DC1095383415E8ABD1FA2A84A419AC646A40C538341D915782755A84A4160CA6D1B0F5383413D85FC1524A84A41BC0F2119145383417FFFB9FCC0A74A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '424', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_513', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.606929', '1', '2024-03-05 09:05:16.606929', '1', 1, '320211', NULL, '1', '0102000020B011000002000000245423694F538341B3C14DA582AA4A41263F69075E53834150850350D7AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '513', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_693', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.563058', '1', '2024-03-05 09:05:19.563058', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,伸缩装置型钢松动,有异响', '693', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_449', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.610845', '1', '2024-03-05 09:05:16.610845', '1', 1, '320211', NULL, '1', '0102000020B01100000600000082D3C62072538341AE393D1BB7AB4A418865935B6E538341EC55AA4DEAAB4A410DC83D356C538341C1919D1C0BAC4A4189040AED69538341A182C2AE30AC4A41394FF80765538341B030449A7EAC4A41130D917B5E538341B0A574BCDBAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '449', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_442', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.614674', '1', '2024-03-05 09:05:16.614674', '1', 1, '320211', NULL, '1', '0102000020B011000006000000133A2E4885538341B81EA1E949AA4A414241EA87875383414E89C4B353AA4A41168F1D5388538341CB9BB3C254AA4A41EAB6AE00895383413AB2196152AA4A41868E3B53895383412E867F034EAA4A41BE3D55F889538341D3535B453EAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '442', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_482', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.619698', '1', '2024-03-05 09:05:16.619698', '1', 1, '320211', NULL, '1', '0102000020B0110000020000008F0C2CF112538341FED6413D4DB14A41446C6CCB155383418DC1EE6B60B14A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '482', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_595', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.623425', '1', '2024-03-05 09:05:16.623425', '1', 1, '320211', NULL, '1', '0102000020B011000002000000191414322A538341EE9852A871AF4A4121CF42A628538341C3CB12B08FAF4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '595', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_451', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.627061', '1', '2024-03-05 09:05:16.627061', '1', 1, '320211', NULL, '1', '0102000020B011000004000000F4944DF0935383416467B925A8AF4A41F52F933992538341C52161B08DAF4A41AB0E933B915383413D8176DD82AF4A411ABDA9DB8C538341A1D0893A60AF4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '451', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_523', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.630684', '1', '2024-03-05 09:05:16.630684', '1', 1, '320211', NULL, '1', '0102000020B0110000040000004701AC1FF2528341985C8575A79E4A415B1BF0DDF0528341C81C7A42D89F4A412E14349EEE52834183A4F3D5F0A14A412BD511C2ED5283418E6752FABAA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '523', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_432', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.634517', '1', '2024-03-05 09:05:16.634517', '1', 1, '320211', NULL, '1', '0102000020B01100000600000060153D762B538341D66590E231AA4A41D9344EE42B53834184F32D0C50AA4A41949EB4FD2B538341803FFD1863AA4A4172F909282C538341D76801D982AA4A4120CBE7CA2B538341BE257E10ABAA4A41CA5DA3912A53834178C4559DFDAA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '432', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_518', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.63827', '1', '2024-03-05 09:05:16.63827', '1', 1, '320211', NULL, '1', '0102000020B0110000070000001D28E197935383412499B7224BAE4A4175664BD6BB53834158B6F6D912AE4A415EB9E7B2C55383417271EC3A09AE4A41A75D742FCD538341670C710A0EAE4A414AA7085FD4538341A7681C5513AE4A413859857BD9538341DFC4C79F18AE4A418E4E52AED9538341063A32D718AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '518', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_541', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.642005', '1', '2024-03-05 09:05:16.642005', '1', 1, '320211', NULL, '1', '0102000020B01100000D0000009D7732642A538341F83F4A171CA24A413F641176325383418D82BFA184A04A415ED3443F34538341672B917F27A04A419610788B34538341D919D44F1DA04A41A14CE7D73653834128576627E59F4A4141499BD83C53834113DA2154699F4A411F897A6547538341795C49DA859E4A4117106AED4B5383412A84914F219E4A41747DAE264D53834127BF26F9FF9D4A4167BCD0024E5383416D8B2149D89D4A418CF58CBF51538341B30D59BEF49C4A410C7A622753538341FAA4830FB39C4A41B0D22F5257538341280D8D69F69B4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '541', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_418', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.646022', '1', '2024-03-05 09:05:16.646022', '1', 1, '320211', NULL, '1', '0102000020B01100000D000000AC142C99B15283412F91C156D5AF4A417D5009C5AC5283413A752F7D0EB04A4141E207DBA15283418D7D243BBFB04A414DFD7D78975283415D98080871B14A41C713E41695528341A8E6EAE592B14A419ACD05FB915283415847BCD2B5B14A411FE46B998F52834159938BDFC8B14A41B45338D28C52834158DF5AECDBB14A41352B7C948952834104F45CCCEBB14A4179A6140C81528341F20A727D0AB24A41B46578CE6C528341C7DE036651B24A41DB83331C685283419428C0A155B24A416DEF7222435283416118E46363B24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '418', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_569', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.650169', '1', '2024-03-05 09:05:16.650169', '1', 1, '320211', NULL, '1', '0102000020B011000028000000FB88946139538341A75F39CE788C4A417F45D7B42D5383412D5933404F8D4A418BD0B2FA1B53834122551BDCA08E4A410680D3EE1053834100E4F1836D8F4A41937DB9CE0D5383415CE95FA8A78F4A41904E6CE10A5383415FA00192E58F4A41FA4F3062085383418032C55D21904A41D79C381C0753834122E540A541904A41CB9FEBAB05538341F49D464D6D904A4160747CDE035383414D21F929A9904A41DAB0849A01538341F64BF47E06914A4172EAD9C6005383411C965FCD2B914A411D7D958DFF52834172F57B0E82914A412A9FF88FFE5283413CEF33D6EB914A4189B49A2EFE528341BA0491012B924A41DA967850FE5283418964498C8F924A41EA6D23A3FF528341D4B496C756934A4114299BA7015383416C5BC7C84B944A41B1CACEEF03538341BEBC51415A954A4133FD926A0453834139D2C135AC954A41B61CA4D80453834169E646FD0B964A41DD3335070553834199B6106977964A4154DD1FBD0453834165DF32D1F9964A415A8F6C3104538341525F8081C6974A4192D9C1DC03538341639C83625D984A4172830ED202538341B001C479C6994A416F37CA9602538341C68F26592B9A4A41B78E41A101538341EA683C09D29A4A41D30D4A5901538341AF0B7582FB9A4A414EAF160F00538341EB81A674709B4A416EEFFCEAFE5283419B63176DC09B4A419A884961FD52834191949C22299C4A4197C46F1DFC52834113FBE9D16E9C4A41703F6F25F8528341E9F9AD19349D4A41089B5D40F3528341C06D11FE1D9E4A41AF9D104FF25283414B0C1B66699E4A4126585DC3F1528341F869A10DD99E4A41987A21C1F052834142B0B20EDF9F4A41BF1621C7ED52834199F53245ADA24A41962532B6ED5283417594DE8BB4A24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '569', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_578', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.654254', '1', '2024-03-05 09:05:16.654254', '1', 1, '320211', NULL, '1', '0102000020B0110000020000001A2EB338C45383413F9ACB8362A34A41E41DD7FAD15383415A7905CA0EA24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '578', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_498', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.658318', '1', '2024-03-05 09:05:16.658318', '1', 1, '320211', NULL, '1', '0102000020B011000028000000E49301CB5E53834141BF691C58A94A416E8112BC5D538341966C619C18A94A418D26BD915D538341E5575FBC08A94A4161E989455D5383410BFD681DD0A84A41216012BE5C5383413F75A6419CA84A412114CE825C5383414556A37184A84A41D031F0605C5383419A6E6DCE6FA84A4114C889475C538341F761590D59A84A41C0E5AB255C538341E50D9CE14CA84A41D93E12C05B5383412BF999013DA84A41D6F2CD845B5383417BB7CBE431A84A41ADC2BC975A538341F9501FAA24A84A41D5284591595383416FEA726F17A84A418207459358538341F6311CDA0CA84A4137E6449557538341764CF90707A84A414D0089535653834159CB6F9FFFA74A41AC6422BD545383419881B363FBA74A41AA2500E153538341276FC454FAA74A41415F550D535383413D1D1AFAFCA74A41212F442052538341CADD5EAE00A84A41293C667F5153834131152CDB03A84A41344988DE50538341F05EE81608A84A4182A0FFE84F53834116E0717F0FA84A4172C954964E538341BD21409C1AA84A41C42DEEFF4C538341DBA2C90422A84A41DF4732BE4B5383417A11645E28A84A417ECDCB254B5383416036427C2AA84A41A433541F4A5383412653327B33A84A41D3E997E345538341CCD8E18558A84A419E60205C4553834105358DD05DA84A416DD7A8D444538341F607C19362A84A412B02ED11445383417BC017296DA84A41944A532D43538341A4C22AFA7BA84A41E3ED0E734253834109A05FAD88A84A417C5DDBAB3F5383416FFAA639A0A84A41C8EAC9C23C5383419BF4CBEBB5A84A41C946E3EC3A538341876D6735C4A84A4103C7AFA43853834149591468D5A84A41BACB51C437538341ED966BF5E3A84A412714B8DF36538341FCB56EC5FBA84A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '498', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_428', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.662186', '1', '2024-03-05 09:05:16.662186', '1', 1, '320211', NULL, '1', '0102000020B01100000B000000FB2268C05E538341074B00415DA94A4170B39B8761538341062AF13EEEA94A41D02D022062538341669FC40B21AA4A41F11EF13062538341E7EFB9BA51AA4A41CBEEDF436153834116E4031F7DAA4A41EAC901265F5383411293B7E9C1AA4A4126D534F55D538341232B5603E8AA4A41E274121B5C53834169545AC307AB4A410411122159538341E958806525AB4A4184A9330755538341F5F01E7F4BAB4A4180C032154E53834165E77BB485AB4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '428', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_537', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.666104', '1', '2024-03-05 09:05:16.666104', '1', 1, '320211', NULL, '1', '0102000020B01100000400000028D6792C98538341E09B12CC3DA14A41A358CEE391538341A859ED28A8A14A416BF377C9895383414F0111FA35A24A41950CFFD67E53834189D44B5CF2A24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '537', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_509', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.669896', '1', '2024-03-05 09:05:16.669896', '1', 1, '320211', NULL, '1', '0102000020B01100000B00000015E970085C538341CE6BD8CD3FAC4A41BB413E3360538341AD40CF7A80AD4A41EA48FA72625383416672C8F850AE4A41B4D54F1A64538341C720253D0BAF4A4100F74F186553834101BBD62740AF4A41A6D1D88A675383413FCD115B8CAF4A410C9DB79E6E53834103C5873075B04A41AFB662ED71538341D0C3D92360B14A4169CFDB5C7E538341620041FBF5B44A41DA5F0F2481538341209F188848B54A415DEA679D9953834183FC176668B64A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '509', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_694', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.568042', '1', '2024-03-05 09:05:19.568042', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:其他,防撞墙被剐蹭,损伤面积约10个平方', '694', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_479', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.673609', '1', '2024-03-05 09:05:16.673609', '1', 1, '320211', NULL, '1', '0102000020B011000005000000400A564DE5528341365F3FC004AD4A416C656826F052834160AF5362A3AC4A4121CB57B0F3528341281EC82984AC4A41B28B9C64F752834193C5E45B5AAC4A4117DDAD4FF952834170F88BE63FAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '479', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_502', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.677576', '1', '2024-03-05 09:05:16.677576', '1', 1, '320211', NULL, '1', '0102000020B0110000060000005563C259D1528341BD8617CEC39E4A4124C34BC4D7528341158A8F63CC9F4A41FB4FA16BD9528341EB9B27EC42A04A411D41907CD952834148C52BAC62A04A41867CD438D952834124E58CA1BCA04A41640DA16FD752834150E7562AB0A24A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '502', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_587', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.681811', '1', '2024-03-05 09:05:16.681811', '1', 1, '320211', NULL, '1', '0102000020B01100000D0000001CEE409BF9528341778E21F23BAC4A41CFDE963CFE5283419FE3E4B6F3AB4A41FB0EA829FF5283413CA416A2E4AB4A419D846CA200538341D57A12E2C4AB4A41751EE4A80153834132DE73B8A6AB4A41BCF39F6B02538341BEE84E1689AB4A41312C31980353834142BC7AD450AB4A414B23CF5804538341207F31E52AAB4A412638ADF904538341D55D1B4404AB4A410A189C890553834140243B46F2AA4A41C79A82610653834107222875E3AA4A417D430B5707538341D0F24867D9AA4A414B3525F809538341C5A6795AC6AA4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '587', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_528', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.685727', '1', '2024-03-05 09:05:16.685727', '1', 1, '320211', NULL, '1', '0102000020B01100000B00000063DB36AC17538341C4046F6D0FA24A418D2115C81A5383419F1EC8E3A1A14A41D3C0597E1D53834152EC77DF46A14A41E17E84121E5383417D3CA8D830A14A412F7AE2F21E53834197B06E6D00A14A41CF8AE2711F5383419C76DF5CCDA04A416D29FC971F538341990796F0A5A04A4167035A7A1F5383412C617F577BA04A412E7AE2F21E538341312B67D644A04A4182E8A19B1A538341879FBF3B589F4A41A8B3EE8E1A5383416CA5255B559F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '528', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_603', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.68966', '1', '2024-03-05 09:05:16.68966', '1', 1, '320211', NULL, '1', '0102000020B0110000090000003F153A0BCB52834148C3DE8579944A418987B284D252834108C1CBB46A944A4107055ECDD8528341ACE396015E944A413E610918DE528341B73D2F7B54944A4104290A0CE4528341B997C7F44A944A411855A469E8528341D472E9D648944A4119CE3FB3F652834110CF94214E944A4142D18463FC52834102CF94214E944A41DF68746A015383418DBCA5124D944A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '603', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_496', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.693877', '1', '2024-03-05 09:05:16.693877', '1', 1, '320211', NULL, '1', '0102000020B011000017000000742AC0F0C0528341D3D111ADFDA74A41D4A42689C1528341DA30274F9CA74A41539E95D9C1528341C4CFA64F58A74A413F6BD15CC25283417EC91CEF4CA74A41030EABA2C25283412B1DA03625A74A41E9C71517C35283419BDF48A916A74A41574F9E0EC35283417C369C7207A74A413284511BC3528341043276D0E9A64A4138D09556C3528341F7CCC7294BA64A4136D94026C6528341CE9411666CA44A41FA0C3033C85283414D939E6303A24A41223D4120C9528341E26835DFE9A04A4194100E53C95283418B36E5DA8EA04A41B4401F40CA528341B7AE22FF5AA04A41E708B9A3CB528341C21684E534A04A413269DB7DCD52834111B6B2F811A04A41B85275DFCF5283417FD66A74F69F4A4106C964E8D3528341AB4E9767E39F4A413F251033D95283411953CE3AE09F4A41838E68AEF0528341D31B010EDD9F4A4199F924E8F5528341CB1B010EDD9F4A4101DBD30412538341D0FF6E3416A04A41D323712A325383414934D20980A04A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '496', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_466', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.698202', '1', '2024-03-05 09:05:16.698202', '1', 1, '320211', NULL, '1', '0102000020B011000010000000864F22B5C75283417ACF1636A9A24A41B38C5501C852834194C909EE4DA24A41522B6F27C85283410C88153F1DA24A419A0D4D49C8528341A03795BED9A14A417A68A273C8528341989FF6A4B3A14A4183A115A0C85283418EE854BB75A14A4115402FC6C8528341A1DF08773AA14A416E35DEF6C85283410798D1601FA14A41D9E2080CC9528341357D3257F1A04A41E32E4D47C95283419456AE9190A04A4177E6E62BCA5283410D5F3F5B5FA04A41F4CF808DCC52834176BA8C8022A04A418A128189CE528341CCB9242006A04A414DD1D6ADD152834132C7640CEE9F4A4196FB817BD5528341D7CFDBABE29F4A4115BF79BFD7528341F3676422E39F4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '466', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_529', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.702178', '1', '2024-03-05 09:05:16.702178', '1', 1, '320211', NULL, '1', '0102000020B011000007000000540DA26C455383415311A8871AAD4A418C02080D4253834147748C454CAD4A412B0A5DBC3F538341811C079D64AD4A4150A65CC23C53834185B4A5B68AAD4A416F5DD2652F5383418B39FE3A25AE4A4155AF7CC02C538341C787E01847AE4A41CF5E9DB42153834114F836BDD1AE4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '529', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_539', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.705972', '1', '2024-03-05 09:05:16.705972', '1', 1, '320211', NULL, '1', '0102000020B011000007000000D651CDDF5B538341EBB4EBB938AC4A41D74822105953834155BFECA940AC4A418E73664D585383416640761248AC4A4119D61027565383414AB1233D5DAC4A41EC04CCF35153834113E528ED84AC4A418FBBA82749538341A27B125BDEAC4A416EC10E4746538341D1943ADD0BAD4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '539', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_531', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.709719', '1', '2024-03-05 09:05:16.709719', '1', 1, '320211', NULL, '1', '0102000020B011000008000000FD3B1C6D9E538341216C2AED4BA74A41381F2C6E95538341C4438BF125A84A412613B4F68C538341C29318E9ECA84A41E36EC3F7835383411564FA24EFA94A4173B66C6279538341C144A76D04AB4A41FCFD15CD6E538341155B659898AB4A414AA2F3026553834174C828E413AC4A416DC435CF5C5383415D44578631AC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '531', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_483', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.713421', '1', '2024-03-05 09:05:16.713421', '1', 1, '320211', NULL, '1', '0102000020B011000007000000337E9A2CFD5383418A9887D0AC9C4A410A84004CFA538341379C4F4D889C4A41939A66EAF753834148853A9C699C4A41BF046673F353834123C6AA93329C4A4154C076E7F0538341535DEB87169C4A41CC3E540FEE5383414E6BB4F4F99B4A41872A7670EC5383411F69A123EB9B4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '483', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_501', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '3', NULL, NULL, '2024-03-05 09:05:16.717498', '1', '2024-03-05 09:05:16.717498', '1', 1, '320211', NULL, '1', '0102000020B01100000F000000AF72F209C6538341974FDD5697AC4A411D738B79C15383413DBE77B09DAC4A413F0F8B7FBE538341ADD066BF9EAC4A413238E02CBD538341FF0734ECA1AC4A4110C9AC63BB538341CFF757AEAFAC4A4195DF1202B95383415D3138ACC1AC4A413AE767B1B653834111463A8CD1AC4A41CE9556C6B45383418F7F1A8AE3AC4A41F7C9DE42B25383415E6F3E4CF1AC4A41D85AAB79B053834150941C6AF3AC4A41CC44DE4AAE538341C0A60B79F4AC4A410DFB210FAA538341F65C4F3DF0AC4A41BB9AFF34A8538341A0258210EDAC4A41447243F7A4538341616F3E4CF1AC4A4154A386C39C5383416215A6D2FAAC4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '501', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('dl_jc_dltxfx_414', '6', '城市生命线工程安全风险评估实施方案-道路专项', NULL, '2', NULL, NULL, '2024-03-05 09:05:16.721806', '1', '2024-03-05 09:05:16.721806', '1', 1, '320211', NULL, '1', '0102000020B01100001B000000C57C44E78C538341B2365A1385A04A41EC5766C98A538341550D565365A04A4150D643F187538341C22D0ECF49A04A416B9B98A4835383414A29E82C2CA04A410E0FDC6C7D5383413FEBE18CFC9F4A41F30F0E4C74538341E8293FB3B69F4A414DF662FD7053834177003BF3969F4A41D519EBFA6D538341ED7A8BE8719F4A4195050D5C6C5383410B37AAFA579F4A417896D9926A5383419605B81B3F9F4A4107F0D89C655383417AA8AEABF79E4A415D61946563538341EAC86627DC9E4A410CF44F2C6253834191EB3174CF9E4A41061DA5D9605383414DBC5266C59E4A41C3932D52605383411F60A71BC09E4A411637E9975F5383414B16EBDFBB9E4A4117AC82805E5383418ECC2EA4B79E4A415F4F3EC65D538341791ED9FEB49E4A411AEF1BEC5B538341F738B62CAF9E4A4154AE0A805A53834171787178AB9E4A41E6801A025153834174D209F2A19E4A41E9D3885C4C53834164282BDC9B9E4A41FCA188DF4A538341E53E917A999E4A41ADA62AFF49538341EF19B35C979E4A41BD8DAA40495383410A1E2AEC939E4A41C14E886448538341CAEAD34E8D9E4A41E3DAB27B47538341197C39F5869E4A41', NULL, NULL, '2023-05-10 00:00:00', NULL, '城市生命线工程安全风险评估实施方案-道路专项', '414', NULL, '道路', 'dl_jc_dltxfx', '2023-11-10 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10368', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.784017', '1', '2024-03-05 09:05:16.784017', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏程度:轻,道板损坏', '10368', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_783', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.788388', '1', '2024-03-05 09:05:16.788388', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏程度:轻,裂缝', '783', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_784', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.792242', '1', '2024-03-05 09:05:16.792242', '1', 1, '320213', NULL, '1', '0101000020B0110000F4F32667B4538341F45E43C604A04A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:栏杆基础,贴面松动', '784', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10106', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.796343', '1', '2024-03-05 09:05:16.796343', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10106', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10548', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.800353', '1', '2024-03-05 09:05:16.800353', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '桥名牌,局部轻微', '10548', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_350', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.804369', '1', '2024-03-05 09:05:16.804369', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,缺失', '350', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10158', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.808404', '1', '2024-03-05 09:05:16.808404', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏程度:轻,局部轻微', '10158', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_101', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.812176', '1', '2024-03-05 09:05:16.812176', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-12-11 00:00:00', NULL, '人行道,局部轻微', '101', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_398', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.815995', '1', '2024-03-05 09:05:16.815995', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:轻,局部轻微', '398', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10200', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.819925', '1', '2024-03-05 09:05:16.819925', '1', 1, '320213', NULL, '1', '0101000020B0110000B9BC804DF0528341D1F84C563DAF4A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏程度:轻,局部轻微', '10200', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10264', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.82403', '1', '2024-03-05 09:05:16.82403', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,残钉', '10264', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10358', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.827954', '1', '2024-03-05 09:05:16.827954', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,桥面砖缺失一块', '10358', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_901', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.831886', '1', '2024-03-05 09:05:16.831886', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '901', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1068', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.835796', '1', '2024-03-05 09:05:16.835796', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏类型:破损,基础大理石破损', '1068', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_399', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.839724', '1', '2024-03-05 09:05:16.839724', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:民丰桥由东向西,桥面道板砖破损两块,开裂三块,民丰桥由东向西,桥面道板砖破损两块,开裂三块', '399', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_400', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.843534', '1', '2024-03-05 09:05:16.843534', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:中,道板砖开裂破损7块', '400', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_404', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.84724', '1', '2024-03-05 09:05:16.84724', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)东向西45#伸缩缝处,沥青坑塘,损伤面积约一个平方', '404', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_406', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.851702', '1', '2024-03-05 09:05:16.851702', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏程度:轻,局部轻微', '406', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_407', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.855257', '1', '2024-03-05 09:05:16.855257', '1', 1, '320213', NULL, '1', '0101000020B0110000B1942537195383413C15E2E93CAF4A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '栏杆,局部轻微', '407', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_408', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.858973', '1', '2024-03-05 09:05:16.858973', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:破损,通裕桥由南向北,桥面道板砖破损两块', '408', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_409', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.862762', '1', '2024-03-05 09:05:16.862762', '1', 1, '320213', NULL, '1', '0101000020B0110000655D1CB787538341B60303A4F8B44A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏位置:望江立交由东向南最后一条伸缩缝处,沥青坑塘,损伤面积约一个平方', '409', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_410', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.866587', '1', '2024-03-05 09:05:16.866587', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:其他,有污渍', '410', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10359', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.870954', '1', '2024-03-05 09:05:16.870954', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:其他,伸缩缝堵塞', '10359', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10360', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.875061', '1', '2024-03-05 09:05:16.875061', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一', '10360', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10361', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.878955', '1', '2024-03-05 09:05:16.878955', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:破损,广北大桥由东向西,路缘石开裂破损一处,近2#伸缩缝', '10361', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10362', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.882872', '1', '2024-03-05 09:05:16.882872', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏程度:重,外侧防撞墙锈胀露筋,损伤面积约4个平方', '10362', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10363', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.886913', '1', '2024-03-05 09:05:16.886913', '1', 1, '320213', NULL, '1', '0101000020B0110000C5FD4E3BF05283416A7E3529B7AD4A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,人行道砖破损', '10363', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10364', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.890677', '1', '2024-03-05 09:05:16.890677', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏类型:其他,防拋网立柱油漆剥落', '10364', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10365', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.895119', '1', '2024-03-05 09:05:16.895119', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏程度:轻,2块', '10365', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10366', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.899255', '1', '2024-03-05 09:05:16.899255', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约1个平方', '10366', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10367', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.903107', '1', '2024-03-05 09:05:16.903107', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:重,锚固区破损,约2m', '10367', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10369', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.907146', '1', '2024-03-05 09:05:16.907146', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏类型:其他,伸缩缝型钢松动', '10369', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10370', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.910868', '1', '2024-03-05 09:05:16.910868', '1', 1, '320213', NULL, '1', '0101000020B01100003295B7835E5383410B89423DF3A34A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '10370', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10371', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.914538', '1', '2024-03-05 09:05:16.914538', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-25 00:00:00', NULL, '损坏程度:轻,瓜市桥由东向西,伸缩缝垃圾堵塞', '10371', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10372', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.918419', '1', '2024-03-05 09:05:16.918419', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-22 00:00:00', NULL, '损坏位置:青祁路高架由北向南17与15#墩柱处,防撞墙外侧混凝土开裂', '10372', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10373', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.922381', '1', '2024-03-05 09:05:16.922381', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:中,落水管缺失', '10373', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10374', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.92613', '1', '2024-03-05 09:05:16.92613', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:轻,桥头跳车,沥青下沉', '10374', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_414', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.929885', '1', '2024-03-05 09:05:16.929885', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏位置:金城东路高架由西向东14#伸缩缝处,伸缩缝钢板翘起', '414', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10375', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.933446', '1', '2024-03-05 09:05:16.933446', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏位置:人行道踏步,道板破损缺失', '10375', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10376', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.937465', '1', '2024-03-05 09:05:16.937465', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏类型:破损,南侧桥头人行道盲道砖缺损一块(15㎝*15㎝)', '10376', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10037', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.941221', '1', '2024-03-05 09:05:16.941221', '1', 1, '320213', NULL, '1', '0101000020B01100002B00C67CB55283414CDFF9D9EBA54A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏程度:轻,局部轻微', '10037', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_923', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.944971', '1', '2024-03-05 09:05:16.944971', '1', 1, '320213', NULL, '1', '0101000020B01100001F0C7C809853834131E15EA3DCAF4A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏类型:破损,橡胶止水带开裂破损,约21m', '923', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_190', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.948712', '1', '2024-03-05 09:05:16.948712', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-11-19 00:00:00', NULL, '损坏程度:重,声屏障下封板脱落两片', '190', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_13', '5', '缺陷-支座检测', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.952407', '1', '2024-03-05 09:05:16.952407', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2020-12-31 00:00:00', NULL, '本桥共 76 个支座,支座 4 处限位块抵死。', '13', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_69', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.956175', '1', '2024-03-05 09:05:16.956175', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '①桥面铺装未见异常。
- ②全桥排水系统泄水孔堵塞。
- ③护栏存在防撞墙锈胀露筋 1 处,面积 0.03m 2。
- ④附属设施电力箱盖缺失 2 处。
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝未见异常。 ', '69', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_36', '5', '缺陷-支座检测', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.959818', '1', '2024-03-05 09:05:16.959818', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '钢组件锈蚀2处。', '36', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_950', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.963652', '1', '2024-03-05 09:05:16.963652', '1', 1, '320213', NULL, '1', '0101000020B01100005C6DC5CE8F538341D9E7F8A6C3A04A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:破损,平石破损', '950', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_580', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.968622', '1', '2024-03-05 09:05:16.968622', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,限载牌有污渍', '580', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_581', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.972384', '1', '2024-03-05 09:05:16.972384', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,道板破损', '581', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_582', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.976058', '1', '2024-03-05 09:05:16.976058', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏位置:由东往西机动车道最后一条伸缩缝至下坡处,机动车道沥青路面多处横向裂缝(共10m,湖光仪器厂旁),局部轻微', '582', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_583', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.979795', '1', '2024-03-05 09:05:16.979795', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,局部轻微', '583', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_584', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.983651', '1', '2024-03-05 09:05:16.983651', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,道板砖缺失10块', '584', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10377', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.987371', '1', '2024-03-05 09:05:16.987371', '1', 1, '320213', NULL, '1', '0101000020B0110000B2D81F28AC518341B0A2943A74AB4A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:破损,道板砖破损两块且松动两块', '10377', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10378', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.991169', '1', '2024-03-05 09:05:16.991169', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:锡虞立交由东向西最后一条伸缩缝向西约25米处,防撞墙被剐蹭,损伤面积约一个平方', '10378', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_585', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.994848', '1', '2024-03-05 09:05:16.994848', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:中,道板砖缺失5块,破损一块', '585', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_586', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:16.998874', '1', '2024-03-05 09:05:16.998874', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏位置:凤翔北路高架01标由南向北38#墩处,落水管破损', '586', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_587', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.002701', '1', '2024-03-05 09:05:17.002701', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:中,落水管破损', '587', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_588', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.006511', '1', '2024-03-05 09:05:17.006511', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:破损,落水管破损', '588', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_589', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.010336', '1', '2024-03-05 09:05:17.010336', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,桥面砖破损一块', '589', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_590', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.014531', '1', '2024-03-05 09:05:17.014531', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏位置:锡钢桥由北向南人行道处,道板砖缺失17块,松动1块', '590', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_591', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.018416', '1', '2024-03-05 09:05:17.018416', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,不明线组悬挂', '591', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_592', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.022071', '1', '2024-03-05 09:05:17.022071', '1', 1, '320213', NULL, '1', '0101000020B0110000256AF024EC5283413C9220B861A44A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:由南往北非机动车道沥青路面积水一处(2m*1m),局部轻微', '592', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_992', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.025771', '1', '2024-03-05 09:05:17.025771', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏程度:中,防护钢板翘起并破损', '992', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_993', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.02947', '1', '2024-03-05 09:05:17.02947', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:金城路高架由西向东第二个泄水井处,1处泄水井盖缺失', '993', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_919', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.033296', '1', '2024-03-05 09:05:17.033296', '1', 1, '320213', NULL, '1', '0101000020B011000095B28C1CBB5383418D81AE4707AA4A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:轻,沥青坑洞', '919', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_33', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.03696', '1', '2024-03-05 09:05:17.03696', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '(1)桥面铺装:左侧非机动车道在0#台接坡处横向开裂,L=1.50m;右侧非机动车道在0#台处凹陷,A=9.00 m2;全桥非机动车道沥青层普遍存在剥落现象;
- (2)伸缩缝:伸缩缝普遍堵塞,1#伸缩缝在左侧机动车道处缝宽异常,D=7mm,伸缩缝止水带破损2处,L总=11.00m;
- (3)栏杆:露筋锈蚀26处,L总=5.00m,锈胀开裂1处,A总=1.80 m2。
- (4)人行梯道:桥面饰面砖及护栏均无明显病害。', '33', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10000', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.040938', '1', '2024-03-05 09:05:17.040938', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏位置:南侧桥头盲道砖缺损一块(15cm*15㎝),局部轻微', '10000', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10001', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.044662', '1', '2024-03-05 09:05:17.044662', '1', 1, '320213', NULL, '1', '0101000020B0110000BF4D7FEC1D55834135F2076F89AD4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,左右两侧多处墙体刮蹭', '10001', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10002', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.048603', '1', '2024-03-05 09:05:17.048603', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-11-13 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一块', '10002', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10003', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.052264', '1', '2024-03-05 09:05:17.052264', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏程度:轻,局部轻微', '10003', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10004', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.055852', '1', '2024-03-05 09:05:17.055852', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏程度:轻,桥面砖松动二块', '10004', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1055', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.059514', '1', '2024-03-05 09:05:17.059514', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:损坏,局部轻微', '1055', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10005', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.063178', '1', '2024-03-05 09:05:17.063178', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏程度:轻,东风桥由东向西,伸缩缝垃圾堵塞', '10005', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_35', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.066998', '1', '2024-03-05 09:05:17.066998', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '主线:墩台水侵害9处;墩台网裂5处,A总=9.00 m2;露筋锈蚀13处,L总=2.70m;破损1处,A=0.01m2;墩台竖向裂缝10条,L总=7.30m,W=0.08~0.12mm。
- 梯道:WL梯道1号墩盖梁水侵;WR梯道露筋锈蚀2处,L总=0.30m,2号墩盖梁水侵;EL梯道锈胀开裂2处,L总=0.40m,盖梁水侵2处;ER梯道盖梁水侵2处。
- ', '35', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10006', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.071', '1', '2024-03-05 09:05:17.071', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏类型:损坏,道板松动缺损', '10006', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_603', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.074651', '1', '2024-03-05 09:05:17.074651', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏程度:,防撞墙被剐蹭,损伤面积约9个平方', '603', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_604', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.078355', '1', '2024-03-05 09:05:17.078355', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约2个平方', '604', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_994', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.082354', '1', '2024-03-05 09:05:17.082354', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:损坏,桥面砖破损二块', '994', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_995', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.086342', '1', '2024-03-05 09:05:17.086342', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏位置:阅山由北向南人行道,道板砖缺失8块', '995', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_996', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.090197', '1', '2024-03-05 09:05:17.090197', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏类型:破损,道板砖缺失破损', '996', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_997', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.093903', '1', '2024-03-05 09:05:17.093903', '1', 1, '320213', NULL, '1', '0101000020B0110000E49387E3FD528341FA5F599BACAE4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏类型:破损,道板砖破损3块', '997', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_998', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.097649', '1', '2024-03-05 09:05:17.097649', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭', '998', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10007', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.101759', '1', '2024-03-05 09:05:17.101759', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:广北大桥由东向西,近1#伸缩缝,路缘石破损一处,广北大桥由东向西,近1#伸缩缝,路缘石破损一处', '10007', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_999', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.105418', '1', '2024-03-05 09:05:17.105418', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏类型:破损,沥青坑塘', '999', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1000', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.109101', '1', '2024-03-05 09:05:17.109101', '1', 1, '320213', NULL, '1', '0101000020B0110000876481C8FE528341CBD5C824E8AE4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏位置:凤翔路U2匝道向北7#伸缩缝处,桥面横向裂缝', '1000', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10008', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.112872', '1', '2024-03-05 09:05:17.112872', '1', 1, '320213', NULL, '1', '0101000020B011000086E7DEBBE85283410BC781B778B14A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:其他,沥青拥包', '10008', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10009', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.116814', '1', '2024-03-05 09:05:17.116814', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:重,声屏障下封板缺失6m且松动', '10009', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1001', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.120829', '1', '2024-03-05 09:05:17.120829', '1', 1, '320213', NULL, '1', '0101000020B0110000876481C8FE528341CBD5C824E8AE4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏程度:中,防撞墙开裂破损', '1001', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1002', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.125681', '1', '2024-03-05 09:05:17.125681', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏程度:轻,沥青坑塘', '1002', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1003', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.12956', '1', '2024-03-05 09:05:17.12956', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏位置:博学桥北向南,桥面砖缺失二块', '1003', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1005', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.133646', '1', '2024-03-05 09:05:17.133646', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '人行道,局部轻微', '1005', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1006', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.137329', '1', '2024-03-05 09:05:17.137329', '1', 1, '320213', NULL, '1', '0101000020B0110000C298FB76FD52834121BF45D709AC4A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '栏杆,局部轻微', '1006', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_196', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.140984', '1', '2024-03-05 09:05:17.140984', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏程度:中,道板砖缺失两块', '196', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_197', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.144784', '1', '2024-03-05 09:05:17.144784', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-11-17 00:00:00', NULL, '损坏程度:轻,民丰桥由东向西,桥面道板砖开裂破损一块', '197', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1007', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.148416', '1', '2024-03-05 09:05:17.148416', '1', 1, '320213', NULL, '1', '0101000020B0110000F25E3527BB53834173C6BE5207AA4A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏程度:轻,沥青破损1处', '1007', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_211', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.15206', '1', '2024-03-05 09:05:17.15206', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,伸缩缝内有杂物', '211', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10010', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.156232', '1', '2024-03-05 09:05:17.156232', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏类型:破损,落水管托盘处破损', '10010', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10290', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.160204', '1', '2024-03-05 09:05:17.160204', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '10290', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10011', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.163826', '1', '2024-03-05 09:05:17.163826', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-22 00:00:00', NULL, '损坏程度:重,防撞墙外侧混凝土剥落', '10011', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10012', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.167654', '1', '2024-03-05 09:05:17.167654', '1', 1, '320213', NULL, '1', '0101000020B0110000FCF282D41D5383418360C7854CC24A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:凤翔北路高架E10匝道入口处,两侧防撞墙被剐蹭,损伤面积约4个平方', '10012', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_292', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.171524', '1', '2024-03-05 09:05:17.171524', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-28 00:00:00', NULL, '损坏程度:轻,大理石松动', '292', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_293', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.175176', '1', '2024-03-05 09:05:17.175176', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏类型:破损,声屏障玻璃屏体破碎', '293', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_294', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.178983', '1', '2024-03-05 09:05:17.178983', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏程度:中,声屏障玻璃屏体破碎', '294', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_295', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.182721', '1', '2024-03-05 09:05:17.182721', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏类型:损坏,露筋', '295', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_296', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.186559', '1', '2024-03-05 09:05:17.186559', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏位置:伸缩缝后浇带,开裂', '296', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_297', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.190806', '1', '2024-03-05 09:05:17.190806', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏程度:轻,接头处松动', '297', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10013', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.194555', '1', '2024-03-05 09:05:17.194555', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏位置:张福桥由西向东人行道,道板砖破损4块(尺寸:500*370)', '10013', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1008', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.198324', '1', '2024-03-05 09:05:17.198324', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏位置:博学桥北向南,桥面砖破损缺失三块', '1008', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10014', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.202113', '1', '2024-03-05 09:05:17.202113', '1', 1, '320213', NULL, '1', '0101000020B01100000780F127BB538341B8E908C407AA4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏类型:其他,违规占用', '10014', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1009', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.206028', '1', '2024-03-05 09:05:17.206028', '1', 1, '320213', NULL, '1', '0101000020B01100000C9800531F53834111213C3021A24A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏类型:损坏,人行道砖损坏', '1009', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_902', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.209811', '1', '2024-03-05 09:05:17.209811', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏位置:蠡湖大桥北向南,桥面砖破损一块', '902', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10015', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.21356', '1', '2024-03-05 09:05:17.21356', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10015', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1010', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.217251', '1', '2024-03-05 09:05:17.217251', '1', 1, '320213', NULL, '1', '0101000020B01100002D50190942538341BBE7F94F019F4A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '1010', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1011', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.221137', '1', '2024-03-05 09:05:17.221137', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏类型:其他,缺失1处', '1011', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1012', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.225254', '1', '2024-03-05 09:05:17.225254', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏类型:破损,道板砖破损1块', '1012', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1013', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.229045', '1', '2024-03-05 09:05:17.229045', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭约5个平方米', '1013', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1014', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.232887', '1', '2024-03-05 09:05:17.232887', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:中,防撞墙开裂破损约5个平方米', '1014', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1015', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.236538', '1', '2024-03-05 09:05:17.236538', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:轻,道板破损缺失', '1015', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10016', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.240235', '1', '2024-03-05 09:05:17.240235', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损', '10016', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10017', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.244109', '1', '2024-03-05 09:05:17.244109', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-13 00:00:00', NULL, '损坏程度:轻,局部轻微', '10017', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10018', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.247799', '1', '2024-03-05 09:05:17.247799', '1', 1, '320213', NULL, '1', '0101000020B01100004A3CA0CEB75383415BB6481221A64A41', NULL, NULL, '2023-10-21 00:00:00', NULL, '损坏类型:破损,大理石破损', '10018', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10019', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.251433', '1', '2024-03-05 09:05:17.251433', '1', 1, '320213', NULL, '1', '0101000020B0110000F25E3527BB53834173C6BE5207AA4A41', NULL, NULL, '2023-07-11 00:00:00', NULL, '损坏程度:轻,沥青破损1处', '10019', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_643', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.255106', '1', '2024-03-05 09:05:17.255106', '1', 1, '320213', NULL, '1', '0101000020B0110000F95D91527153834173E1B23834A24A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏位置:金城路高架(贡湖大道跨线桥)下匝道桥由东向西1#伸缩缝处,防撞墙被剐蹭,损伤面积约1个平方', '643', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_644', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.259282', '1', '2024-03-05 09:05:17.259282', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:中,泄水井盖缺失3个', '644', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_653', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.262973', '1', '2024-03-05 09:05:17.262973', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:轻,局部轻微', '653', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_39', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.266775', '1', '2024-03-05 09:05:17.266775', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2022-01-01 00:00:00', NULL, '桥墩主要病害表现为受水侵蚀、堆积杂物、竖向裂缝、胀裂剥落。桥墩存在1处受水侵蚀;1处堆积杂物;5条竖向裂缝,总长2.5m,宽度区间为0.08mm至012mm;1处胀裂剥落,长0.6m。
- 桥台主要病害表现为灰缝脱落、占用。0#台存在局部侧墙灰缝脱落;1处占用。', '39', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1036', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.27044', '1', '2024-03-05 09:05:17.27044', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-06 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东起点处,沥青坑塘约1个平方', '1036', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1037', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.274283', '1', '2024-03-05 09:05:17.274283', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-07-06 00:00:00', NULL, '损坏类型:其他,广北大桥由西向东,伸缩缝垃圾堵塞', '1037', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1038', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.278003', '1', '2024-03-05 09:05:17.278003', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏位置:栏杆基础,破损', '1038', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_905', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.28182', '1', '2024-03-05 09:05:17.28182', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:其他,限载牌', '905', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_683', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.285605', '1', '2024-03-05 09:05:17.285605', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏位置:金城路立交兴源路主线LD144南向北10米处,沥青坑塘,损伤面积约一个平方', '683', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_299', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.289464', '1', '2024-03-05 09:05:17.289464', '1', 1, '320213', NULL, '1', '0101000020B0110000C9A22978A153834168FE983E33954A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏类型:破损,开裂', '299', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10379', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.293454', '1', '2024-03-05 09:05:17.293454', '1', 1, '320213', NULL, '1', '0101000020B011000074767292A2538341B7FA23DEC59E4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,瓷砖缺损', '10379', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_447', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.29724', '1', '2024-03-05 09:05:17.29724', '1', 1, '320213', NULL, '1', '0101000020B01100009B6CCA9141538341A142E70F76BC4A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:凤翔北路高架02标E6匝道由南向北起点处,防撞墙漆皮剥落,损伤面积约一个平方', '447', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1004', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.301073', '1', '2024-03-05 09:05:17.301073', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏程度:轻,东风桥由东向西,伸缩缝垃圾堵塞', '1004', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_67', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.305028', '1', '2024-03-05 09:05:17.305028', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2019-11-23 00:00:00', NULL, '翼缘板 2 条横向裂缝,总长度 3.0m。箱梁存在 1 处混凝土破损,面积 0.03m 2;1 处垃圾夹杂,面积 0.10m 2。1 处麻面,面积 1.00m2', '67', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_825', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.308801', '1', '2024-03-05 09:05:17.308801', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:景渎立交金城路高架桥由东向西12#伸缩缝处,沥青坑塘,损伤面积约两个平方', '825', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10036', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.312458', '1', '2024-03-05 09:05:17.312458', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10036', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10020', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.316228', '1', '2024-03-05 09:05:17.316228', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '(1)引桥:翼缘板横向裂缝共8条,L总=20.0m,W=0.08~0.14mm;7-2#梁露筋锈蚀1处,L=0.30m;6-1#梁底板1条纵向裂缝,L=8.00m,W=0.08mm;\n(2)主桥箱室外:3-1#梁左翼板1条横向裂缝,L=2.00m,W=0.08mm;3-1#梁底破损5处,A总=0.19m2;4-1#、4-2#梁底板在钢混连接处轻微锈蚀;3-1#梁、3-2#梁底共8条纵向裂缝,L总=12.00m,W=0.08~0.10mm。\n(3)主桥箱室内:顶板横向裂缝2条,L总=1.50m,W=0.08mm;横隔板竖向裂缝1处,L=0.70m,W=0.10mm;顶板纵向裂缝57条,L总=82.30m,W=0.08~0.12mm;4-1#箱梁箱室箱室积水1处;钢箱室涂层脱落、起皮、锈蚀共35处,A总=18.04m2;\n(4)梯道:WL梯道1条纵向裂缝,L=0.80m,W=0.12mm;13条横向裂缝,L总=4.75m,W=0.08~0.12mm;1处露筋锈蚀,L=0.10m。WR梯道23条竖向裂缝,L总=9.20m,W=0.12mm;15条U形裂缝,L总=15.00m,W=0.08~0.10mm。EL梯道9条U形裂缝L总=5.40m,W=0.08~0.10mm,10条横向裂缝,L总=10.00m,W=0.08~0.10mm。ER梯道10条竖向裂缝L总=4.00m,W=0.08~0.12mm,10条横向裂缝,L总=10.00m,W=0.08~0.10mm。', '10020', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10021', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.320126', '1', '2024-03-05 09:05:17.320126', '1', 1, '320213', NULL, '1', '0101000020B011000038CDBBC26C5483418A7C096B70A84A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏位置:金城东由西往东右侧LD163–LD165处,落水井盖多处缺失', '10021', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_684', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.323813', '1', '2024-03-05 09:05:17.323813', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:中,伸缩缝钢板翘起,防撞墙混凝土破损', '684', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10022', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.327538', '1', '2024-03-05 09:05:17.327538', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏程度:轻,大理石松动水泥破损', '10022', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_457', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.3312', '1', '2024-03-05 09:05:17.3312', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏类型:损坏,民丰桥由东向西,桥面道板砖缺失一块,开裂三块', '457', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_376', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.336157', '1', '2024-03-05 09:05:17.336157', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖缺失二块', '376', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_377', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.339716', '1', '2024-03-05 09:05:17.339716', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏位置:由东向西,大理石破损', '377', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_378', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.343366', '1', '2024-03-05 09:05:17.343366', '1', 1, '320213', NULL, '1', '0101000020B0110000921D9B8ABA5283413BC9563D0AB54A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏类型:其他,局部轻微', '378', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_379', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.347226', '1', '2024-03-05 09:05:17.347226', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '379', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_380', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.350867', '1', '2024-03-05 09:05:17.350867', '1', 1, '320213', NULL, '1', '0101000020B01100008E49C6266A538341A13FFBA5A5A94A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏类型:破损,大理石多处,缺口', '380', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_381', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.354929', '1', '2024-03-05 09:05:17.354929', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏位置:金城东路B匝道由西向东落地段,沥青裂缝,长度约为两米', '381', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10023', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.358822', '1', '2024-03-05 09:05:17.358822', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏类型:损坏,底部护板脱落', '10023', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10024', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.362582', '1', '2024-03-05 09:05:17.362582', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:轻,道板破损缺失', '10024', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10025', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.366517', '1', '2024-03-05 09:05:17.366517', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏类型:损坏,西汀桥由东向西,桥面道板砖缺失破损两块', '10025', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10026', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.370424', '1', '2024-03-05 09:05:17.370424', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏类型:破损,桥面砖破损一块', '10026', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10027', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.374371', '1', '2024-03-05 09:05:17.374371', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:其他,东风桥由东向西,伸缩缝垃圾堵塞', '10027', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10028', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.378915', '1', '2024-03-05 09:05:17.378915', '1', 1, '320213', NULL, '1', '0101000020B0110000C08274FA2F538341108255E51FB04A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:其他,两新桥由北向南,伸缩缝垃圾堵塞', '10028', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_826', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.383639', '1', '2024-03-05 09:05:17.383639', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '826', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10029', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.388284', '1', '2024-03-05 09:05:17.388284', '1', 1, '320213', NULL, '1', '0101000020B011000030FA0A7515538341B1A0F7E8C5B04A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '10029', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10030', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.392719', '1', '2024-03-05 09:05:17.392719', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏程度:重,防撞墙开裂', '10030', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10031', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.397358', '1', '2024-03-05 09:05:17.397358', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-12-01 00:00:00', NULL, '损坏程度:轻,通裕桥由南向北,桥面道板砖松动两块', '10031', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10032', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.401861', '1', '2024-03-05 09:05:17.401861', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏类型:破损,桥面积水', '10032', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10033', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.406422', '1', '2024-03-05 09:05:17.406422', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏位置:南侧推坡道口道板砖缺损两块(每块19cm*19cm),局部轻微', '10033', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10034', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.411435', '1', '2024-03-05 09:05:17.411435', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '人行道,局部轻微', '10034', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10035', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.41767', '1', '2024-03-05 09:05:17.41767', '1', 1, '320213', NULL, '1', '0101000020B01100000CE1111A4554834121821C3E5EA04A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏类型:其他,落水管2处脱落', '10035', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_38', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.422047', '1', '2024-03-05 09:05:17.422047', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2022-01-01 00:00:00', NULL, '主梁(主梁、挂梁)主要病害表现为横向裂缝、露筋、纵向裂缝、渗水泛碱,个别构件出现破损、竖向裂缝、砼夹渣、网状裂缝、胀裂剥落。梁体存在128条横向裂缝,总长114.15m,宽度区间为0.06mm至0.2mm;44处露筋,总长177.5m;12条纵向裂缝,总长33.2m,宽度区间为0.1mm至0.3mm,其中有1条超限裂缝,长2.6m,宽0.3mm,深8.5mm;5处渗水泛碱;2处砼夹渣,总面积为0.34m2;2处网状裂缝,总面积为0.121m2;2处胀裂剥落,总面积为0.004m2;1条竖向裂缝,长1.5m,宽0.1mm;1处破损,面积约为0.002m2。', '38', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_458', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.427716', '1', '2024-03-05 09:05:17.427716', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏位置:永旺大桥运河西桥下,易燃物', '458', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_459', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.432403', '1', '2024-03-05 09:05:17.432403', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏程度:轻,大理石破损', '459', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10038', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.437695', '1', '2024-03-05 09:05:17.437695', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '10038', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10039', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.44227', '1', '2024-03-05 09:05:17.44227', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '从现场的检测数据来看,所抽检的构件中钢筋保护层评定标度为“1”的有\n无锡市 2021 年市管桥梁结构定期检测项目(三标段)清宁大桥结构定期检测报告\n报告编号:0226220248\n苏交科集团检测认证有限公司 第 127 页 共 131 页\n19 个,说明其对结构钢筋耐久性影响不显著;评定标度为“2”的有 18 个,说明其对结构钢筋耐久性\n有轻度影响;评定标度为“3”的有 3 个,说明其对结构钢筋耐久性有影响。', '10039', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_460', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.446914', '1', '2024-03-05 09:05:17.446914', '1', 1, '320213', NULL, '1', '0101000020B01100006124B48DAE53834125E6CB7F5CA24A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏程度:,局部轻微', '460', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10040', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.451511', '1', '2024-03-05 09:05:17.451511', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10040', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10041', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.46023', '1', '2024-03-05 09:05:17.46023', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏类型:破损,泄水井盖破损一只', '10041', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_143', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.464105', '1', '2024-03-05 09:05:17.464105', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏类型:破损,车辆碰撞', '143', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_161', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.467845', '1', '2024-03-05 09:05:17.467845', '1', 1, '320213', NULL, '1', '0101000020B011000001CB4AFC80528341F3FA051144A44A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,多处露筋', '161', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_14', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.471635', '1', '2024-03-05 09:05:17.471635', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2020-12-31 00:00:00', NULL, '从现场的检测数据来看,所抽检的构件中钢筋保护层评定标度为“1”的 2020 年无锡市管桥梁结构定期检测项目(二标段)蓉湖大桥结构定期检测报告 报告编号:0226210111 苏交科集团检测认证有限公司 第 171 页 共 172 页 有 13 个,说明其对结构钢筋耐久性影响不显著;评定标度为“2”的有 7 个,说明其对结构钢筋耐久 性有轻度影响。', '14', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10042', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.475262', '1', '2024-03-05 09:05:17.475262', '1', 1, '320213', NULL, '1', '0101000020B0110000A95357046B538341183A213651A44A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:轻,大理石破损', '10042', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10043', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.4791', '1', '2024-03-05 09:05:17.4791', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10043', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10044', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.482705', '1', '2024-03-05 09:05:17.482705', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:破损,侧石破损', '10044', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10045', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.486617', '1', '2024-03-05 09:05:17.486617', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏类型:损坏,南侧人行道瓷砖破损', '10045', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10046', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.490437', '1', '2024-03-05 09:05:17.490437', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏程度:轻,勤丰桥由西向东,伸缩缝垃圾堵塞', '10046', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10047', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.494134', '1', '2024-03-05 09:05:17.494134', '1', 1, '320213', NULL, '1', '0101000020B01100009261159CD453834124D74DF731A84A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:破损,南丰桥由南向北,伸缩缝锚固区开裂一处', '10047', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10048', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.498015', '1', '2024-03-05 09:05:17.498015', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:瞻江立交EN匝道由东往北8#伸缩缝,泄水井盖缺失1只', '10048', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10049', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.501941', '1', '2024-03-05 09:05:17.501941', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏位置:金城路高架(贡湖大道跨线桥)由西向东55#与56#伸缩缝处,防撞墙开裂2与防撞墙被剐蹭约3㎡', '10049', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10050', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.507472', '1', '2024-03-05 09:05:17.507472', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道,道板砖缺失11块', '10050', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10051', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.511146', '1', '2024-03-05 09:05:17.511146', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失五块', '10051', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10052', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.515028', '1', '2024-03-05 09:05:17.515028', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏类型:破损,道板破损', '10052', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10053', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.518792', '1', '2024-03-05 09:05:17.518792', '1', 1, '320213', NULL, '1', '0101000020B011000001CB4AFC80528341F3FA051144A44A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,多处露筋', '10053', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_685', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.522518', '1', '2024-03-05 09:05:17.522518', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏程度:中,防撞墙网裂破损', '685', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_686', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.526498', '1', '2024-03-05 09:05:17.526498', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏位置:凤翔路高架由北向南115#墩柱伸缩缝,物体有掉落隐患', '686', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_687', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.530607', '1', '2024-03-05 09:05:17.530607', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏类型:其他,栏杆锈蚀', '687', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1039', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.534308', '1', '2024-03-05 09:05:17.534308', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:破损,栏杆基础表层开裂', '1039', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1184', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.538385', '1', '2024-03-05 09:05:17.538385', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,落水管破损', '1184', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10405', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.542475', '1', '2024-03-05 09:05:17.542475', '1', 1, '320213', NULL, '1', '0101000020B0110000FE2A87232F53834122A435ECBDA84A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:轻,人行道破损', '10405', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1185', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.546684', '1', '2024-03-05 09:05:17.546684', '1', 1, '320213', NULL, '1', '0101000020B01100003C3F8C7E9952834176880D745CA54A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:南侧桥头人行道LD029环氧覆层破损一处,局部轻微', '1185', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1052', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.550561', '1', '2024-03-05 09:05:17.550561', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏类型:破损,局部轻微', '1052', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1053', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.554252', '1', '2024-03-05 09:05:17.554252', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏类型:破损,局部轻微', '1053', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10054', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.558095', '1', '2024-03-05 09:05:17.558095', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损(第一车道)', '10054', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1054', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.562979', '1', '2024-03-05 09:05:17.562979', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:重,防护钢板翘起', '1054', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1056', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.566904', '1', '2024-03-05 09:05:17.566904', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:破损,伸缩缝防护钢板翘起', '1056', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1057', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.570858', '1', '2024-03-05 09:05:17.570858', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:轻,防撞墙被剐蹭,损伤面积约三个平方', '1057', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1058', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.574956', '1', '2024-03-05 09:05:17.574956', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:轻,声屏障破损', '1058', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1059', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.57913', '1', '2024-03-05 09:05:17.57913', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '1059', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1060', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.583417', '1', '2024-03-05 09:05:17.583417', '1', 1, '320213', NULL, '1', '0101000020B0110000100F6866CD5383413553E8F636B14A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏位置:毛岸里桥由西向东,伸缩缝垃圾堵塞,毛岸里桥由西向东,伸缩缝垃圾堵塞', '1060', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1061', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.587352', '1', '2024-03-05 09:05:17.587352', '1', 1, '320213', NULL, '1', '0101000020B0110000D9A3F0D2BA53834160CA876004B14A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:轻,大横江桥由西向东,伸缩缝垃圾堵塞', '1061', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1062', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.591564', '1', '2024-03-05 09:05:17.591564', '1', 1, '320213', NULL, '1', '0101000020B01100009261159CD453834124D74DF731A84A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:破损,南丰桥由南向北,伸缩缝锚固区开裂一处', '1062', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1190', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.595281', '1', '2024-03-05 09:05:17.595281', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,广北大桥由西向东,桥面大理石砖破损三块', '1190', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1065', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.599942', '1', '2024-03-05 09:05:17.599942', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东32#伸缩缝处,锚固区破损', '1065', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_478', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.603689', '1', '2024-03-05 09:05:17.603689', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖缺损五块,盲道砖缺损一块。', '478', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_578', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.607575', '1', '2024-03-05 09:05:17.607575', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,道板砖缺失一块,松动一块', '578', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_702', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.61153', '1', '2024-03-05 09:05:17.61153', '1', 1, '320213', NULL, '1', '0101000020B0110000FD743C5B2D538341F3DA33F141AE4A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏位置:桥面沥青铺装,局部轻微', '702', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_703', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.615265', '1', '2024-03-05 09:05:17.615265', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏位置:长广溪桥西往东,限载牌弯曲变形', '703', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_704', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.619113', '1', '2024-03-05 09:05:17.619113', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏类型:破损,局部轻微', '704', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10055', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.622803', '1', '2024-03-05 09:05:17.622803', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,桥面砖缺失二处二块', '10055', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_107', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.626538', '1', '2024-03-05 09:05:17.626538', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '107', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1066', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.630617', '1', '2024-03-05 09:05:17.630617', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏位置:凤翔路高架由北向南39#伸缩缝处,有沥青坑塘(第一车道)', '1066', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10056', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.634422', '1', '2024-03-05 09:05:17.634422', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖破碎损坏七块', '10056', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1067', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.638535', '1', '2024-03-05 09:05:17.638535', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏程度:重,道板砖开裂', '1067', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_461', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.642264', '1', '2024-03-05 09:05:17.642264', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏位置:由东向西LD002非机动车道,大理石破损', '461', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_462', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.646759', '1', '2024-03-05 09:05:17.646759', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏类型:损坏,南侧桥头盲道砖破损一处', '462', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_26', '5', '缺陷-锚头开锚', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.650956', '1', '2024-03-05 09:05:17.650956', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '由于检测条件等各方面原因,共选取了 3 根缆索下锚头进行了抽样开锚检查。
- 从抽样的锚头外观检查结果来看,主要病害为锚杯锈蚀,封锚处有少量积水、漏油。', '26', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_27', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.656129', '1', '2024-03-05 09:05:17.656129', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '从现场的检测数据来看,所抽检的构件中钢筋保护层评定标度为“1”的有
- 118 个,说明其对结构钢筋耐久性影响不显著;评定标度为“2”的有 6 个,说明其对结构钢筋耐久性
- 有轻度影响。', '27', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_15', '5', '材质-钢筋锈蚀电位', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.659916', '1', '2024-03-05 09:05:17.659916', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2020-12-31 00:00:00', NULL, '从现场的检测数据来看,所抽检构件中有 9 个构件锈蚀状况可能性评价为 无锈蚀活动性或锈蚀活动性不确定,锈蚀概率小于 10%;有 2 个构件锈蚀状况可能性评价钢筋锈蚀 性状不确定,可能存在坑蚀现象。', '15', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_183', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.663731', '1', '2024-03-05 09:05:17.663731', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺失一块(19cm*19cm),局部轻微', '183', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1086', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.667656', '1', '2024-03-05 09:05:17.667656', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭', '1086', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_782', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.671421', '1', '2024-03-05 09:05:17.671421', '1', 1, '320213', NULL, '1', '0101000020B0110000BEB16E980D54834184AA26B8CCA94A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏程度:中,沥青拥包,损伤面积约5个平方', '782', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1087', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.675525', '1', '2024-03-05 09:05:17.675525', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏位置:江海路人行天桥由北向南,跨路段桥面大理石砖松动四块,江海路人行天桥由北向南,跨路段桥面大理石砖松动四块', '1087', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1088', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.679413', '1', '2024-03-05 09:05:17.679413', '1', 1, '320213', NULL, '1', '0101000020B011000006642F3C265383419EEC119C64A94A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏程度:轻,道板松动', '1088', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1089', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.683272', '1', '2024-03-05 09:05:17.683272', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:重,沥青网裂凹陷约两个平方', '1089', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1090', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.687232', '1', '2024-03-05 09:05:17.687232', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:破损,道板砖破损1块,松动1块(尺寸:300*300)', '1090', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1091', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.691197', '1', '2024-03-05 09:05:17.691197', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:中,锚固区破损', '1091', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10057', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.695297', '1', '2024-03-05 09:05:17.695297', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏程度:轻,局部轻微', '10057', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10058', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.699313', '1', '2024-03-05 09:05:17.699313', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块', '10058', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1205', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.703121', '1', '2024-03-05 09:05:17.703121', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏类型:破损,栏杆立柱固定砂浆开裂脱落', '1205', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_906', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.707097', '1', '2024-03-05 09:05:17.707097', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:破损,局部轻微', '906', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_743', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.710812', '1', '2024-03-05 09:05:17.710812', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:景渎立交E匝道由北向东4#伸缩缝处,防撞墙被剐蹭,损伤面积约2个平方', '743', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_744', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.714557', '1', '2024-03-05 09:05:17.714557', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约2个平方', '744', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1211', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.718751', '1', '2024-03-05 09:05:17.718751', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏位置:金城路高架(贡湖大道跨线桥)由西向东55#与56#伸缩缝处,防撞墙开裂2与防撞墙被剐蹭约3㎡', '1211', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_505', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.72245', '1', '2024-03-05 09:05:17.72245', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-24 00:00:00', NULL, '损坏类型:破损,沥青坑塘(边车道)', '505', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_507', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.726855', '1', '2024-03-05 09:05:17.726855', '1', 1, '320213', NULL, '1', '0101000020B01100003DDB5C770B538341D5B9303850B24A41', NULL, NULL, '2023-09-24 00:00:00', NULL, '损坏位置:八卦桥由南向北人行道第二条伸缩缝处,栏杆基础破损', '507', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_508', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.731764', '1', '2024-03-05 09:05:17.731764', '1', 1, '320213', NULL, '1', '0101000020B01100001CF5501032538341534D9E7C37AA4A41', NULL, NULL, '2023-09-24 00:00:00', NULL, '损坏类型:损坏,沥青坑塘', '508', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_509', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.735536', '1', '2024-03-05 09:05:17.735536', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-23 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块,松动一块', '509', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_510', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.739968', '1', '2024-03-05 09:05:17.739968', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏类型:损坏,局部轻微', '510', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_184', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.743737', '1', '2024-03-05 09:05:17.743737', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏类型:损坏,局部轻微', '184', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_790', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.747772', '1', '2024-03-05 09:05:17.747772', '1', 1, '320213', NULL, '1', '0101000020B0110000C52B42C74D53834174A8347E6EAC4A41', NULL, NULL, '2023-08-18 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '790', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_433', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.751333', '1', '2024-03-05 09:05:17.751333', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏类型:损坏,局部轻微', '433', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_434', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.755014', '1', '2024-03-05 09:05:17.755014', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:西汀桥由西向东,伸缩缝锚固区混凝土开裂破损,西汀桥由西向东,伸缩缝锚固区混凝土开裂破损', '434', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_435', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.758701', '1', '2024-03-05 09:05:17.758701', '1', 1, '320213', NULL, '1', '0101000020B0110000655D1CB787538341B60303A4F8B44A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:望江立交由东向南最后一条伸缩缝处(第一车道),沥青坑塘', '435', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_436', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.762351', '1', '2024-03-05 09:05:17.762351', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:梁溪路下穿通道桥由北向南人行道起点处,栏杆底座破损', '436', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_437', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.766076', '1', '2024-03-05 09:05:17.766076', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:江海路人行天桥由北向南,跨路段栏杆下方大理石砖松动三块,江海路人行天桥由北向南,跨路段栏杆下方大理石砖松动三块', '437', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_511', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.769961', '1', '2024-03-05 09:05:17.769961', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '511', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_22', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.774069', '1', '2024-03-05 09:05:17.774069', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)桥面铺装层 7 条横向、纵向或斜向开裂(L 总=
- 19.5m)、1 处网裂(S 总=0.12m2)、2 处拥包(S 总=1.62m2)、1 处坑槽(S=0.03m2);(2)伸缩
- 缝 2 处橡胶条破损、锚固区混凝土 58 条纵向裂缝(L 总=23.2m)、2 处碎裂或者破损(S 总=0.105m
- 2);(3)人行道路缘石 1 处破损(S=0.015m2)、铺装层 1 处网裂(S=6.75m2)。', '22', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1095', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.778398', '1', '2024-03-05 09:05:17.778398', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:轻,泄水井盖缺失1只', '1095', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_579', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.782358', '1', '2024-03-05 09:05:17.782358', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '579', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_908', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.786292', '1', '2024-03-05 09:05:17.786292', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-07-28 00:00:00', NULL, '损坏程度:重,沥青网裂,损伤面积约四个平方', '908', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_909', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.790255', '1', '2024-03-05 09:05:17.790255', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-28 00:00:00', NULL, '损坏位置:阅溪桥西往东,阅溪桥由西向东,大理石桥栏杆立柱松动脱节', '909', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_861', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.794126', '1', '2024-03-05 09:05:17.794126', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-08-05 00:00:00', NULL, '损坏类型:损坏,人行道瓷砖损坏', '861', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_781', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.798467', '1', '2024-03-05 09:05:17.798467', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:太湖大道高架由西向东13#伸缩缝处,沥青拥包,损伤面积约2个平方', '781', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_785', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.802383', '1', '2024-03-05 09:05:17.802383', '1', 1, '320213', NULL, '1', '0101000020B0110000D8CA4489A55383419A95B42635A04A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:栏杆基础,贴面脱落', '785', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_786', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.806261', '1', '2024-03-05 09:05:17.806261', '1', 1, '320213', NULL, '1', '0101000020B0110000C0B605A6FE538341479319A3999C4A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:栏杆基础,贴面脱落', '786', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10059', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.810335', '1', '2024-03-05 09:05:17.810335', '1', 1, '320213', NULL, '1', '0101000020B0110000437918DD275383410AE09F4646A54A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏程度:轻,填塞', '10059', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_796', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.814164', '1', '2024-03-05 09:05:17.814164', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏程度:中,道板砖开裂破损约20块', '796', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_466', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.81851', '1', '2024-03-05 09:05:17.81851', '1', 1, '320213', NULL, '1', '0101000020B01100002BD3F6C097538341F09B89CDD1AF4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏类型:破损,沥青坑塘凹陷,损伤面积约两个平方', '466', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10060', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.822273', '1', '2024-03-05 09:05:17.822273', '1', 1, '320213', NULL, '1', '0101000020B0110000B4C4439974538341EA54A40864A24A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏程度:轻,局部轻微', '10060', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10061', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.826116', '1', '2024-03-05 09:05:17.826116', '1', 1, '320213', NULL, '1', '0101000020B0110000B8E438CABC528341F62AA42C04B14A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏位置:揽翠桥西侧人行道,桥面人行道瓷砖损坏丢失', '10061', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10062', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.829996', '1', '2024-03-05 09:05:17.829996', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏类型:破损,道板砖缺失2块破损1块', '10062', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_42', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.833645', '1', '2024-03-05 09:05:17.833645', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-11 00:00:00', NULL, '①桥面铺装共发现 4 处坑槽,总面积为 0.4m²;2 处龟裂,总面积为 0.55m²。
- ②排水系统共发现泄水雨篦缺失 10 处,填塞 4 处。
- ③护栏共发现防撞墙 41 处锈胀露筋,总面积为 128.43m²;防撞墙 2 处混凝土破损,总面积为 0.70m²;栏杆有 1 处植被覆盖;全桥护栏未见异常。
- ④附属设施电力箱盖缺失 1 处。
- ⑤桥头平顺未见异常。
- ⑥伸缩缝共存在 33 处伸缩缝橡胶止水带破损;型钢断裂 1 处。', '42', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10063', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.837767', '1', '2024-03-05 09:05:17.837767', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,限载牌有污渍', '10063', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10064', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.841687', '1', '2024-03-05 09:05:17.841687', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-11-20 00:00:00', NULL, '①4#墩锈胀露筋,面积 0.20m 2。 ②支座未见明显病害。 ', '10064', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10065', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.845763', '1', '2024-03-05 09:05:17.845763', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10065', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10066', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.849756', '1', '2024-03-05 09:05:17.849756', '1', 1, '320213', NULL, '1', '0101000020B01100003783C6E28B54834192F19ACD4EA64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭', '10066', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10067', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.853447', '1', '2024-03-05 09:05:17.853447', '1', 1, '320213', NULL, '1', '0101000020B0110000C5E0E8DE0553834117F5822F54AF4A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏位置:凤翔路高架U4匝道由南向北起点处右侧,侧平石拱起,面积约一个平方', '10067', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10068', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.857155', '1', '2024-03-05 09:05:17.857155', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '10068', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10069', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.861241', '1', '2024-03-05 09:05:17.861241', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏类型:其他,江海路人行天桥由北向南,非机动车道转弯处,桥栏杆下方大理石砖错位两块', '10069', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_74', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.864985', '1', '2024-03-05 09:05:17.864985', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2019-11-25 00:00:00', NULL, '桥墩存在 1 处网裂,面积 0.10m2;1 处蜂窝麻面,面积 0.50m2;1 处渗水腐蚀。桥台存在 1 处钢筋外露。 ②支座未见异常。 ', '74', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_41CF5A9BE6B443CFA5895FE06334DF4A', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.414858', '1', '2024-03-05 09:05:12.414858', '1', 1, '320213', NULL, '2', '0101000020B01100004952535C85538341F5360DD74AAB4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '41CF5A9BE6B443CFA5895FE06334DF4A', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_73', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.869094', '1', '2024-03-05 09:05:17.869094', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2019-11-25 00:00:00', NULL, '箱梁存在 1 条横向裂缝,长度 0.6m;1 条纵向裂缝,长度 3.6m;3 处修补处二次开裂。箱梁共存在 3 处麻面,总面积为 3.00m2;1 处混凝土破损,面积 0.01m2;1 处锈胀露筋,面积 0.02m2;1 处钢筋外露,面积 0.04m2。 ', '73', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10070', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.872816', '1', '2024-03-05 09:05:17.872816', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏位置:金城路立交G匝道2#伸缩缝由西向东10米处两侧,防撞墙开裂破损,损伤面积约一个平方', '10070', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10071', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.876686', '1', '2024-03-05 09:05:17.876686', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏类型:破损,瓜市桥由西向东,桥面盲道砖开裂破损四块', '10071', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10072', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.880608', '1', '2024-03-05 09:05:17.880608', '1', 1, '320213', NULL, '1', '0101000020B0110000848B152A88538341A3AD836B57A24A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏类型:破损,广场砖松动', '10072', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10073', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.884129', '1', '2024-03-05 09:05:17.884129', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:轻,路缘石大理石脱落一块破损一块翘起一块', '10073', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10074', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.887956', '1', '2024-03-05 09:05:17.887956', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:其他,伸缩缝内有垃圾', '10074', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10075', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.891689', '1', '2024-03-05 09:05:17.891689', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏类型:破损,桥面砖缺失一块', '10075', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10076', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.895376', '1', '2024-03-05 09:05:17.895376', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭约1个平方', '10076', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10077', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.899228', '1', '2024-03-05 09:05:17.899228', '1', 1, '320213', NULL, '1', '0101000020B01100006011BC1E3953834109051795B6B54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏位置:凤翔北路高架01标W2匝道终点处,泄水井盖缺失1个', '10077', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10078', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.90305', '1', '2024-03-05 09:05:17.90305', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,栏杆锈蚀', '10078', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10079', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.906785', '1', '2024-03-05 09:05:17.906785', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏位置:锡钢桥由北向南人行道处,道板砖缺失17块,松动1块', '10079', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10080', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.910705', '1', '2024-03-05 09:05:17.910705', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏类型:其他,粗骨料外露', '10080', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10081', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.91432', '1', '2024-03-05 09:05:17.91432', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2019-11-23 00:00:00', NULL, '①墩柱存在 1 处锈胀露筋,面积 0.12m 2 ②支座未见异常。', '10081', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_787', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.917992', '1', '2024-03-05 09:05:17.917992', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-18 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西95#墩,落水管脱落', '787', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10082', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.921533', '1', '2024-03-05 09:05:17.921533', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏位置:太湖大道高架由东向西LD018处,防撞墙被剐蹭,损伤面积约两个平方', '10082', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10083', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.92508', '1', '2024-03-05 09:05:17.92508', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '①桥台存在 1 处锈胀露筋,面积 0.04m2。桥墩存在 1 处锈胀露筋,面积 0.03m2;1 处网裂,面积 0.50m2;2 处混凝土破损,面积 0.03m2,1 条竖向裂缝,长度 1.00m,宽度 0.10mm。 ②支座未见明显病害。 ', '10083', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10084', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.928772', '1', '2024-03-05 09:05:17.928772', '1', 1, '320213', NULL, '1', '0101000020B011000095B28C1CBB5383418D81AE4707AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:破损,坑洞', '10084', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10085', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.932337', '1', '2024-03-05 09:05:17.932337', '1', 1, '320213', NULL, '1', '0101000020B01100004B840DD36A53834165D47CF72EAB4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,步梯瓷砖脱落', '10085', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10086', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.935999', '1', '2024-03-05 09:05:17.935999', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏位置:蠡湖大道高架清晏路北向南第二个墩柱处,落水管脱落,伸缩装置橡胶止水带破损', '10086', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10087', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.939712', '1', '2024-03-05 09:05:17.939712', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,松动破损', '10087', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10088', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.943415', '1', '2024-03-05 09:05:17.943415', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约4个平方', '10088', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10089', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.947079', '1', '2024-03-05 09:05:17.947079', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏位置:景渎立交B匝道由西往北距9#伸缩缝还有10米处,沥青网裂,损伤面积约3个平方', '10089', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10090', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.950852', '1', '2024-03-05 09:05:17.950852', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏程度:重,沥青坑塘', '10090', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10091', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.954485', '1', '2024-03-05 09:05:17.954485', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)由西向东46号伸缩缝95米处,沥青坑塘,约5个平方', '10091', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10092', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.958117', '1', '2024-03-05 09:05:17.958117', '1', 1, '320213', NULL, '1', '0101000020B0110000618E5EFCC8538341028A1FD3DFA24A41', NULL, NULL, '2023-10-21 00:00:00', NULL, '损坏类型:其他,栏杆有污渍', '10092', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10093', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.961867', '1', '2024-03-05 09:05:17.961867', '1', 1, '320213', NULL, '1', '0101000020B0110000215385B1B85483417F23F3188AA94A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:轻,左侧防撞墙墙体污染', '10093', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_56', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.966041', '1', '2024-03-05 09:05:17.966041', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2019-11-19 00:00:00', NULL, '①墩柱存在 1 条竖向裂缝,总长为 0.8m,最大宽度 0.12mm。 ②支座挡板抵死 7 处,轻微偏压 2 处,轻微滑移 1 处,轻微变形 1 处。 ', '56', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10094', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.970188', '1', '2024-03-05 09:05:17.970188', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10094', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10095', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.974087', '1', '2024-03-05 09:05:17.974087', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:民丰桥由东向西,桥面道板砖破损两块,开裂三块,民丰桥由东向西,桥面道板砖破损两块,开裂三块', '10095', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_68AD410CE6C3458199461ABF6CB1927B', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.418555', '1', '2024-03-05 09:05:12.418555', '1', 1, '320213', NULL, '2', '0101000020B0110000BB17CAD585538341313436C379AB4A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '68AD410CE6C3458199461ABF6CB1927B', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_57171BC6DFDC49F8BAAD5F7B924AF42D', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.422193', '1', '2024-03-05 09:05:12.422193', '1', 1, '320206', NULL, '2', '0101000020B011000002B1E722975683416B50A0F57BB74A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '57171BC6DFDC49F8BAAD5F7B924AF42D', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_36520333F4904919BF84533F3F4ACEE2', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.425776', '1', '2024-03-05 09:05:12.425776', '1', 1, '320211', NULL, '2', '0101000020B011000056EB1471335183413D2C4628F9914A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '36520333F4904919BF84533F3F4ACEE2', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_E23CB9E070F248A5AD321C1D43228F40', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.4295', '1', '2024-03-05 09:05:12.4295', '1', 1, '320214', NULL, '2', '0101000020B0110000A96A02268B558341FACF922729954A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'E23CB9E070F248A5AD321C1D43228F40', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_9F8E61C9C27E4869AC44629FFF9BBAAB', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.433933', '1', '2024-03-05 09:05:12.433933', '1', 1, '320214', NULL, '2', '0101000020B0110000C210F58C2A5483411D5A3928EFA14A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '9F8E61C9C27E4869AC44629FFF9BBAAB', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_F8F6533AC87246FBA9045CD767926C31', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.437634', '1', '2024-03-05 09:05:12.437634', '1', 1, '320214', NULL, '2', '0101000020B01100003DEA94FCF8538341F70624EA3FA14A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'F8F6533AC87246FBA9045CD767926C31', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_01808B16D1CC44D69331880331CDFDF4', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.441243', '1', '2024-03-05 09:05:12.441243', '1', 1, '320214', NULL, '2', '0101000020B01100000D37A53103548341234B8B3B19A44A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', '01808B16D1CC44D69331880331CDFDF4', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('gs_jg_gwfxhczxx_CD45B0DD539A4150A53EBDBD3318A065', '2', '管材老旧,抢修次数多', NULL, '1', NULL, NULL, '2024-03-05 09:05:12.44492', '1', '2024-03-05 09:05:12.44492', '1', 1, '320214', NULL, '2', '0101000020B0110000670DCC8B3F54834187126FC63FA24A41', NULL, '无锡水务', '2023-07-29 00:00:00', NULL, '管材老旧,抢修次数多', 'CD45B0DD539A4150A53EBDBD3318A065', NULL, '供水', 'gs_jg_gwfxhczxx', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_1', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.460768', '1', '2024-03-05 09:05:12.460768', '1', 1, '320213', NULL, '1', '0103000020B011000001000000040000008B099D5F345383413A9744D2ABA94A41D5CC37B44453834104FF58EED3A94A41D5CC37B44453834104FF58EED3A94A418B099D5F345383413A9744D2ABA94A41', NULL, NULL, NULL, NULL, '道路积水', '1', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_2', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.464751', '1', '2024-03-05 09:05:12.464751', '1', 1, '320214', NULL, '1', '0103000020B01100000100000005000000060984FD395483418AC7ED540B9E4A41B0BDD9AA3B548341E989B201EB9D4A41EE0FA60E39548341C9D54236BE9D4A416872E19736548341CC4E8CC6E29D4A41060984FD395483418AC7ED540B9E4A41', NULL, NULL, NULL, NULL, '道路积水', '2', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_3', '1', '新泰路(无锡科技职业学校西门
- 段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.468841', '1', '2024-03-05 09:05:12.468841', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路(无锡科技职业学校西门
- 段)', '3', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_4', '1', '无锡顺威摩托车配件厂旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.472676', '1', '2024-03-05 09:05:12.472676', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '无锡顺威摩托车配件厂旁', '4', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_5', '1', '东亭街道聚江苑82号102室', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.47636', '1', '2024-03-05 09:05:12.47636', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道聚江苑82号102室', '5', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_6', '1', '长江路和雪梅路往北 100 米处', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.480545', '1', '2024-03-05 09:05:12.480545', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路和雪梅路往北 100 米处', '6', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_7', '1', '上伟路(碧桂园商铺)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.485213', '1', '2024-03-05 09:05:12.485213', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上伟路(碧桂园商铺)', '7', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_8', '1', '观山路左转到净慧东道到新发汇
- 广场的路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.489649', '1', '2024-03-05 09:05:12.489649', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观山路左转到净慧东道到新发汇
- 广场的路段', '8', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_9', '1', '国家软件园北门的和风路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.493597', '1', '2024-03-05 09:05:12.493597', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '国家软件园北门的和风路', '9', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_10', '1', '金石东路(金瑞家园)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.497419', '1', '2024-03-05 09:05:12.497419', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金石东路(金瑞家园)', '10', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_11', '1', '长江路. 汉江路. 珠江路. 新华路
- 等', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.501361', '1', '2024-03-05 09:05:12.501361', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路. 汉江路. 珠江路. 新华路
- 等', '11', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_12', '1', '五湖大道高浪路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.505084', '1', '2024-03-05 09:05:12.505084', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五湖大道高浪路口', '12', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_13', '1', '新友南路 1 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.509257', '1', '2024-03-05 09:05:12.509257', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新友南路 1 号', '13', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_14', '1', '融华路江华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.512929', '1', '2024-03-05 09:05:12.512929', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '融华路江华路', '14', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_15', '1', '五湖大道高浪路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.516721', '1', '2024-03-05 09:05:12.516721', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五湖大道高浪路口', '15', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_16', '1', '龙智大厦门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.520934', '1', '2024-03-05 09:05:12.520934', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '龙智大厦门口', '16', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_17', '1', '梅村街道香梅人家小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.525978', '1', '2024-03-05 09:05:12.525978', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道香梅人家小区', '17', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_18', '1', '新锡路, 锡霞路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.530239', '1', '2024-03-05 09:05:12.530239', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新锡路, 锡霞路路口', '18', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_19', '1', '硕放华友四路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.533753', '1', '2024-03-05 09:05:12.533753', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '硕放华友四路', '19', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_20', '1', '金城路到新华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.537423', '1', '2024-03-05 09:05:12.537423', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城路到新华路', '20', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_21', '1', '东安路. 纺城大道. 锡山大道. 坊
- 达路. 坊和路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.541127', '1', '2024-03-05 09:05:12.541127', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东安路. 纺城大道. 锡山大道. 坊
- 达路. 坊和路', '21', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_22', '1', '万裕苑', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.545205', '1', '2024-03-05 09:05:12.545205', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '万裕苑', '22', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_23', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.549915', '1', '2024-03-05 09:05:12.549915', '1', 1, '320214', NULL, '1', '0103000020B01100000100000005000000F8B91D160054834122A746D0279D4A418140D63CFE538341CF0929E0569D4A41F438C4D100548341FFD5BFCA719D4A41D452093203548341E4A9FA904F9D4A41F8B91D160054834122A746D0279D4A41', NULL, NULL, NULL, NULL, '道路积水', '23', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_24', '1', '东安路新竹路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.553842', '1', '2024-03-05 09:05:12.553842', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东安路新竹路口', '24', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_25', '1', '坊和路和东安路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.557897', '1', '2024-03-05 09:05:12.557897', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊和路和东安路交叉路口', '25', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_26', '1', '先锋路坊达路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.561551', '1', '2024-03-05 09:05:12.561551', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '先锋路坊达路口', '26', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_27', '1', '纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.565461', '1', '2024-03-05 09:05:12.565461', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道', '27', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_58', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.978081', '1', '2024-03-05 09:05:17.978081', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-11-20 00:00:00', NULL, '翼缘板存在 6 条横向裂缝,总长度 15.0m。底板存在 10 条横向裂缝,总长度 21.9m;1条纵向裂缝,长度 30.0m;1 条 L 型裂缝,长度 1.6m;1 处大面积裂缝修补处脱落。箱梁共存在 1 处麻面,面积 0.15m 2;2 处锈胀露筋,总面积为 2.40m2。 ', '58', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10096', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.981982', '1', '2024-03-05 09:05:17.981982', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:中,道板砖开裂破损7块', '10096', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10097', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.985615', '1', '2024-03-05 09:05:17.985615', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-11 00:00:00', NULL, '①桥面铺装共发现 4 处坑槽,总面积为 0.4m²;2 处龟裂,总面积为 0.55m²。\n②排水系统共发现泄水雨篦缺失 10 处,填塞 4 处。\n③护栏共发现防撞墙 41 处锈胀露筋,总面积为 128.43m²;防撞墙 2 处混凝土破损,总面积为 0.70m²;栏杆有 1 处植被覆盖;全桥护栏未见异常。\n④附属设施电力箱盖缺失 1 处。\n⑤桥头平顺未见异常。\n⑥伸缩缝共存在 33 处伸缩缝橡胶止水带破损;型钢断裂 1 处。', '10097', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10098', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.989372', '1', '2024-03-05 09:05:17.989372', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-03 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10098', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10099', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.993306', '1', '2024-03-05 09:05:17.993306', '1', 1, '320213', NULL, '1', '0101000020B0110000D55031A315538341BE2B2D7F27944A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:南侧,桥名牌褪色', '10099', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10100', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:17.997442', '1', '2024-03-05 09:05:17.997442', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-09-27 00:00:00', NULL, '损坏程度:重,防护钢板翘起', '10100', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10101', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.001281', '1', '2024-03-05 09:05:18.001281', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏程度:中,防撞墙4处被剐蹭,损伤面积约两个平方', '10101', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10102', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.004963', '1', '2024-03-05 09:05:18.004963', '1', 1, '320213', NULL, '1', '0101000020B0110000618E5EFCC8538341028A1FD3DFA24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:加高带破损露筋,局部轻微', '10102', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10103', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.00912', '1', '2024-03-05 09:05:18.00912', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-10-03 00:00:00', NULL, '损坏类型:其他,道板砖缺失6块', '10103', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10104', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.013129', '1', '2024-03-05 09:05:18.013129', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:凤翔路高架由北向南50#伸缩缝处,泄水井盖缺失一块', '10104', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10105', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.016969', '1', '2024-03-05 09:05:18.016969', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '10105', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_910', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.02079', '1', '2024-03-05 09:05:18.02079', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-07-28 00:00:00', NULL, '损坏位置:蠡湖大桥南向北,蠡湖大桥由南向北,桥栏杆下理石侧面砖松动破损一处', '910', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_48', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.024519', '1', '2024-03-05 09:05:18.024519', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-17 00:00:00', NULL, '①桥面铺装共发现 1 处老化凹陷,面积 2.00m2;1 处坑槽,面积 0.03m2。
- ②全桥泄水孔 2 处堵塞、井盖缺失。
- ③护栏共发现 7 处锈胀露筋,总面积为 4.48m2;1 处刮蹭,面积为 2.00m2;1 处锈胀,面积为 0.50m2;1 处竖向开裂。
- ④附属设施发现全桥电力箱锈蚀、电箱盖缺失
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝共发现 7 处橡胶止水带破损;1 处锚固区锈胀露筋,面积为 0.01m2。', '48', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10107', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.028467', '1', '2024-03-05 09:05:18.028467', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:桥梁伸缩缝,有杂物,需要清理养护', '10107', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10108', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.032272', '1', '2024-03-05 09:05:18.032272', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '10108', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10109', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.036559', '1', '2024-03-05 09:05:18.036559', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,道板砖缺失一块,松动一块', '10109', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10110', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.040553', '1', '2024-03-05 09:05:18.040553', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:破损,栏杆倾斜', '10110', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10111', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.044273', '1', '2024-03-05 09:05:18.044273', '1', 1, '320213', NULL, '1', '0101000020B0110000C304AE2D16538341D73E1DA567B14A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏位置:凤翔立交由南往北E匝道口,路平石有坑', '10111', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10112', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.047878', '1', '2024-03-05 09:05:18.047878', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏类型:破损,道板砖破损', '10112', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10113', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.051663', '1', '2024-03-05 09:05:18.051663', '1', 1, '320213', NULL, '1', '0101000020B01100002978D1FDFC528341E61DFC2C519C4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,限载牌弯曲不平整', '10113', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10114', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.055256', '1', '2024-03-05 09:05:18.055256', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10114', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10115', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.058855', '1', '2024-03-05 09:05:18.058855', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10115', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_922', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.062614', '1', '2024-03-05 09:05:18.062614', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东33#伸缩缝处,锚固区破损,约2m', '922', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10116', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.066232', '1', '2024-03-05 09:05:18.066232', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:南侧桥头人行道盲道砖缺失一块(15cm*15cm),局部轻微', '10116', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10117', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.069914', '1', '2024-03-05 09:05:18.069914', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏位置:江海立交,桥梁栏杆基础', '10117', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_916', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.073994', '1', '2024-03-05 09:05:18.073994', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东起点处,沥青裂缝,约10m', '916', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1102', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.078015', '1', '2024-03-05 09:05:18.078015', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:轻,大理石破损', '1102', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_28', '1', '二泉路坊达路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.569184', '1', '2024-03-05 09:05:12.569184', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路坊达路', '28', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_917', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.081921', '1', '2024-03-05 09:05:18.081921', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:重,落水管脱落', '917', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_63', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.085587', '1', '2024-03-05 09:05:18.085587', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2019-11-22 00:00:00', NULL, '①桥面铺装未见异常。
- ②全桥泄水孔堵塞,2#墩前侧落水管缺失。
- ③护栏存在防撞墙 7 处锈胀露筋,总面积为 1.33m2。
- ④附属设施全桥声屏障未见异常。
- ⑤桥头平顺未见异常。
- ⑥伸缩缝 2 处橡胶止水带破损。', '63', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_68', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.089373', '1', '2024-03-05 09:05:18.089373', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2019-11-23 00:00:00', NULL, '①墩柱存在 1 处锈胀露筋,面积 0.12m 2 ②支座未见异常。', '68', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10118', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.093828', '1', '2024-03-05 09:05:18.093828', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)盖梁 5 处渗水痕迹、2 处胀裂露筋锈蚀(L\n总=0.3m,S 总=0.06m2)、2 处网裂(S 总=3.9m2)、1 条竖向裂缝且析白(L=0.6m);(2)立柱 13\n处胀裂露筋锈蚀(L 总=3.6m,S 总=0.36m2)、7 条竖向裂缝(L 总=4.6m)、3 条斜向裂缝(L 总=4.2\nm)。', '10118', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_924', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.097717', '1', '2024-03-05 09:05:18.097717', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,约2个平方', '924', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_926', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.101773', '1', '2024-03-05 09:05:18.101773', '1', 1, '320213', NULL, '1', '0101000020B01100005EC94E9D53538341F2FC699908AE4A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏类型:损坏,人行道砖损坏', '926', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_788', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.105618', '1', '2024-03-05 09:05:18.105618', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-18 00:00:00', NULL, '损坏类型:其他,落水管脱落', '788', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10119', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.109674', '1', '2024-03-05 09:05:18.109674', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏类型:破损,底部外立面装饰板破损', '10119', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10120', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.113818', '1', '2024-03-05 09:05:18.113818', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-10-29 00:00:00', NULL, '损坏位置:通江大道、锡澄路主线上跨桥西向东第一条伸缩缝处,沥青拥包,损失面积约一个平方', '10120', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_789', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.117529', '1', '2024-03-05 09:05:18.117529', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-08-18 00:00:00', NULL, '损坏程度:中,外侧防撞墙锈胀露筋,损伤面积约8个平方', '789', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_791', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.121412', '1', '2024-03-05 09:05:18.121412', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北56#墩处,落水管缺失2个', '791', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_792', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.12514', '1', '2024-03-05 09:05:18.12514', '1', 1, '320213', NULL, '1', '0101000020B0110000410A97DFAA538341C7D4CF81D4A54A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏类型:其他,落水管破损一个', '792', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_793', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.129008', '1', '2024-03-05 09:05:18.129008', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏类型:其他,落水管缺失', '793', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_911', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.13282', '1', '2024-03-05 09:05:18.13282', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约1个平方', '911', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_912', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.13653', '1', '2024-03-05 09:05:18.13653', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约1个平方', '912', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_913', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.141001', '1', '2024-03-05 09:05:18.141001', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,人行道道板砖损坏缺失', '913', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_914', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.144878', '1', '2024-03-05 09:05:18.144878', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:重,锚固区破损,约2m', '914', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_915', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.148628', '1', '2024-03-05 09:05:18.148628', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东起点处,沥青坑塘,约1个平方', '915', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1096', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.152462', '1', '2024-03-05 09:05:18.152462', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏位置:瞻江立交(通江大道主线)由北向南6#伸缩缝处,泄水井盖破损两只', '1096', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1097', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.156241', '1', '2024-03-05 09:05:18.156241', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:其他,沥青坑塘二次凹陷约两个平方', '1097', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1098', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.160154', '1', '2024-03-05 09:05:18.160154', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:重,沥青网裂凹陷两个平方', '1098', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1099', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.163933', '1', '2024-03-05 09:05:18.163933', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '1099', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1100', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.167678', '1', '2024-03-05 09:05:18.167678', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '1100', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_801', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.171765', '1', '2024-03-05 09:05:18.171765', '1', 1, '320213', NULL, '1', '0101000020B011000074767292A2538341B7FA23DEC59E4A41', NULL, NULL, '2023-08-16 00:00:00', NULL, '损坏类型:破损,人行道板砖松动', '801', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_802', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.175537', '1', '2024-03-05 09:05:18.175537', '1', 1, '320213', NULL, '1', '0101000020B0110000C08274FA2F538341108255E51FB04A41', NULL, NULL, '2023-08-16 00:00:00', NULL, '损坏类型:其他,两新桥由北向南,由南向北双向伸缩缝垃圾堵塞', '802', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_24', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.179361', '1', '2024-03-05 09:05:18.179361', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)盖梁 5 处渗水痕迹、2 处胀裂露筋锈蚀(L
- 总=0.3m,S 总=0.06m2)、2 处网裂(S 总=3.9m2)、1 条竖向裂缝且析白(L=0.6m);(2)立柱 13
- 处胀裂露筋锈蚀(L 总=3.6m,S 总=0.36m2)、7 条竖向裂缝(L 总=4.6m)、3 条斜向裂缝(L 总=4.2
- m)。', '24', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10121', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.183164', '1', '2024-03-05 09:05:18.183164', '1', 1, '320213', NULL, '1', '0101000020B01100004DC370719E538341929BE1D094AB4A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏类型:破损,外侧防撞墙锈胀露筋,损伤面积约一个平方', '10121', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10380', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.186824', '1', '2024-03-05 09:05:18.186824', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏位置:人行道,由北往南人行道道板砖缺损一块', '10380', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10122', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.190492', '1', '2024-03-05 09:05:18.190492', '1', 1, '320213', NULL, '1', '0101000020B01100005B785719965383415E32004ABBB04A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏位置:长善桥由西向东,桥面道板砖开裂破损两块,长善桥由西向东,桥面道板砖开裂破损两块', '10122', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10123', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.194362', '1', '2024-03-05 09:05:18.194362', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:阅山桥由南向北人行道处,道板砖缺失2块', '10123', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10124', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.198165', '1', '2024-03-05 09:05:18.198165', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,缺失', '10124', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_925', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.201715', '1', '2024-03-05 09:05:18.201715', '1', 1, '320213', NULL, '1', '0101000020B011000070EB6EC17C538341D14065C0CAB44A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:望江立交e匝道处,沥青坑槽,损伤面积约2个平方', '925', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_931', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.205281', '1', '2024-03-05 09:05:18.205281', '1', 1, '320213', NULL, '1', '0101000020B011000041AD2991FF538341FD1BEDC4CC9C4A41', NULL, NULL, '2023-07-22 00:00:00', NULL, '损坏位置:高浪大桥由东往西,运河东一侧,道板缺失松动,高浪大桥由东往西,运河东一侧,道板缺失松动', '931', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_803', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.20915', '1', '2024-03-05 09:05:18.20915', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏位置:金城路立交F匝道由东向西6#墩柱处,墩顶垃圾堆积', '803', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_804', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.212862', '1', '2024-03-05 09:05:18.212862', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏程度:重,外侧防撞墙开裂', '804', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_805', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.216875', '1', '2024-03-05 09:05:18.216875', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏位置:金城路立交F匝道由东向西2#伸缩缝处,锚固区裂缝', '805', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_512', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.22068', '1', '2024-03-05 09:05:18.22068', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '512', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_806', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.224432', '1', '2024-03-05 09:05:18.224432', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏位置:金城路立交F匝道由东向西落地段第一车道,两条裂缝,长度约3m', '806', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_807', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.22884', '1', '2024-03-05 09:05:18.22884', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏类型:其他,防撞墙网裂,损伤面积约两个平方', '807', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_918', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.232864', '1', '2024-03-05 09:05:18.232864', '1', 1, '320213', NULL, '1', '0101000020B0110000FE83C144E852834103772EBA8BB14A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏类型:破损,锚固区混凝土破损', '918', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_920', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.237108', '1', '2024-03-05 09:05:18.237108', '1', 1, '320213', NULL, '1', '0101000020B01100005D436223BB5383415F89CE9A07AA4A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏位置:车道中央,沥青坑洞', '920', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_921', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.240901', '1', '2024-03-05 09:05:18.240901', '1', 1, '320213', NULL, '1', '0101000020B0110000D55031A315538341BE2B2D7F27944A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏类型:破损,道板', '921', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_808', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.24489', '1', '2024-03-05 09:05:18.24489', '1', 1, '320213', NULL, '1', '0101000020B01100000B47C929BD538341BA5301094FA64A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏程度:中,落水管破损1处', '808', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_132', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.249005', '1', '2024-03-05 09:05:18.249005', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏位置:由北往南桥名牌旁人行道道板砖缺损一块(19cm*19cm),局部轻微', '132', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_809', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.252822', '1', '2024-03-05 09:05:18.252822', '1', 1, '320213', NULL, '1', '0101000020B01100000B47C929BD538341BA5301094FA64A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏程度:中,一条横向裂缝,长度约5m', '809', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_513', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.258571', '1', '2024-03-05 09:05:18.258571', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '513', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_514', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.26232', '1', '2024-03-05 09:05:18.26232', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖缺失一块破损一块', '514', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_515', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.266216', '1', '2024-03-05 09:05:18.266216', '1', 1, '320213', NULL, '1', '0101000020B01100001F0C7C809853834131E15EA3DCAF4A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '515', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_516', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.269994', '1', '2024-03-05 09:05:18.269994', '1', 1, '320213', NULL, '1', '0101000020B0110000BF2C26003053834168679820F6A54A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏位置:西北侧人行梯道口栏杆底座大理石砖松动,局部轻微', '516', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_517', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.273922', '1', '2024-03-05 09:05:18.273922', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏位置:由南往北第一条伸缩缝往北五米处,机动车道沥青路面横向裂缝一条3m,修补处磨损(30cm*30cm),局部轻微', '517', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_521', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.279349', '1', '2024-03-05 09:05:18.279349', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损(边车道)', '521', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_522', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.283439', '1', '2024-03-05 09:05:18.283439', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西LD180向西15米处,沥青坑塘,损伤面积约两个平方', '522', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1179', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.287352', '1', '2024-03-05 09:05:18.287352', '1', 1, '320213', NULL, '1', '0101000020B0110000C08274FA2F538341108255E51FB04A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:其他,两新桥由北向南,伸缩缝垃圾堵塞', '1179', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1040', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.291128', '1', '2024-03-05 09:05:18.291128', '1', 1, '320213', NULL, '1', '0101000020B0110000F25E3527BB53834173C6BE5207AA4A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:其他,划痕', '1040', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1041', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.294895', '1', '2024-03-05 09:05:18.294895', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏程度:重,被大车压碎大片道板', '1041', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1042', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.29916', '1', '2024-03-05 09:05:18.29916', '1', 1, '320213', NULL, '1', '0101000020B011000086E7DEBBE85283410BC781B778B14A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:其他,沥青拥包', '1042', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1043', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.303716', '1', '2024-03-05 09:05:18.303716', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西29号伸缩缝到塘南路下匝道1号伸缩缝处,声屏障玻璃屏体开裂', '1043', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1044', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.307454', '1', '2024-03-05 09:05:18.307454', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:破损,锚固区破损', '1044', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1045', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.311331', '1', '2024-03-05 09:05:18.311331', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏位置:江海路人行天桥由南向北,跨路段桥面大理石砖松动四块,江海路人行天桥由南向北,跨路段桥面大理石砖松动四块', '1045', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1046', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.316242', '1', '2024-03-05 09:05:18.316242', '1', 1, '320213', NULL, '1', '0101000020B01100005B785719965383415E32004ABBB04A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:破损,长善桥由西向东,路缘石开裂破损一处', '1046', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_29', '1', '纺城大道和金城路高架桥下', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.572834', '1', '2024-03-05 09:05:12.572834', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和金城路高架桥下', '29', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_30', '1', '纺城大道和锡山大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.577611', '1', '2024-03-05 09:05:12.577611', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和锡山大道', '30', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_31', '1', '永胜路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.581409', '1', '2024-03-05 09:05:12.581409', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '永胜路', '31', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_32', '1', '石门路(惠东里小区在建工地出入口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.585498', '1', '2024-03-05 09:05:12.585498', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '石门路(惠东里小区在建工地出入口)', '32', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_33', '1', '纺城大道和新月路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.589236', '1', '2024-03-05 09:05:12.589236', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和新月路交叉口', '33', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_34', '1', '江溪街道纺城大道附近五洲', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.59285', '1', '2024-03-05 09:05:12.59285', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道纺城大道附近五洲', '34', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_35', '1', '江海路(米市门口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.596558', '1', '2024-03-05 09:05:12.596558', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海路(米市门口)', '35', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_36', '1', '长江北路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.60022', '1', '2024-03-05 09:05:12.60022', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江北路', '36', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_37', '1', '江溪街道金城东路五洲国际四面', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.603757', '1', '2024-03-05 09:05:12.603757', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道金城东路五洲国际四面', '37', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_38', '1', '南方不锈钢交易中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.607469', '1', '2024-03-05 09:05:12.607469', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南方不锈钢交易中心', '38', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_39', '1', '运河东路东侧锡山大桥下方', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.611002', '1', '2024-03-05 09:05:12.611002', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河东路东侧锡山大桥下方', '39', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_40', '1', '城南路黄山路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.614571', '1', '2024-03-05 09:05:12.614571', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '城南路黄山路口', '40', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_41', '1', '深港天地', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.618259', '1', '2024-03-05 09:05:12.618259', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '深港天地', '41', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_42', '1', '五洲国际工业博览园附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.621955', '1', '2024-03-05 09:05:12.621955', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际工业博览园附近', '42', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_43', '1', '金城新华互通下方道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.625578', '1', '2024-03-05 09:05:12.625578', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城新华互通下方道路', '43', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_44', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.629826', '1', '2024-03-05 09:05:12.629826', '1', 1, '320214', NULL, '1', '0103000020B01100000100000004000000C3768A9CBF54834128D1B069F3A64A41DAB71AC1C654834154F8BE2D78A84A41DAB71AC1C654834154F8BE2D78A84A41C3768A9CBF54834128D1B069F3A64A41', NULL, NULL, NULL, NULL, '道路积水', '44', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_45', '1', '锡山大道纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.633571', '1', '2024-03-05 09:05:12.633571', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡山大道纺城大道', '45', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_46', '1', '五洲国际轻纺城', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.637205', '1', '2024-03-05 09:05:12.637205', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际轻纺城', '46', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_47', '1', '群兴路新风路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.64196', '1', '2024-03-05 09:05:12.64196', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路新风路', '47', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_48', '1', '五洲国际商贸城附近新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.645427', '1', '2024-03-05 09:05:12.645427', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际商贸城附近新阳路', '48', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_49', '1', '金城东路团结路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.649162', '1', '2024-03-05 09:05:12.649162', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城东路团结路路口', '49', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_50', '1', '锡达路 222 号周围', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.652749', '1', '2024-03-05 09:05:12.652749', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡达路 222 号周围', '50', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_51', '1', '锡贤路到纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.656723', '1', '2024-03-05 09:05:12.656723', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡贤路到纺城大道', '51', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_52', '1', '城南路(建发上院)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.660259', '1', '2024-03-05 09:05:12.660259', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '城南路(建发上院)', '52', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_53', '1', '新锦路金城高架至锡贤路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.664032', '1', '2024-03-05 09:05:12.664032', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新锦路金城高架至锡贤路段', '53', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_54', '1', '锡贤路上积水严重,导致水已经淹
- 到厂区内, 产生了严重的损失, 车
- 辆也无法正常进出', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.667638', '1', '2024-03-05 09:05:12.667638', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡贤路上积水严重,导致水已经淹
- 到厂区内, 产生了严重的损失, 车
- 辆也无法正常进出', '54', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_55', '1', '锡义路到纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.671324', '1', '2024-03-05 09:05:12.671324', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡义路到纺城大道', '55', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_56', '1', '新泰路(机场路-长江南路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.674841', '1', '2024-03-05 09:05:12.674841', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路(机场路-长江南路)', '56', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_57', '1', '新世界和五洲国际附近的坊城大
- 道. 坊和路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.678486', '1', '2024-03-05 09:05:12.678486', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新世界和五洲国际附近的坊城大
- 道. 坊和路', '57', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_58', '1', '吼山路文萃路(先锋东路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.682284', '1', '2024-03-05 09:05:12.682284', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '吼山路文萃路(先锋东路)', '58', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_59', '1', '二泉路云竹路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.686004', '1', '2024-03-05 09:05:12.686004', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路云竹路', '59', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_60', '1', '新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.6895', '1', '2024-03-05 09:05:12.6895', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新阳路', '60', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_61', '1', '坊城大道,新世界国际旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.693036', '1', '2024-03-05 09:05:12.693036', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊城大道,新世界国际旁', '61', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_62', '1', '胶阳路新羊大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.69664', '1', '2024-03-05 09:05:12.69664', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胶阳路新羊大道', '62', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_63', '1', '锡山大道和纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.70087', '1', '2024-03-05 09:05:12.70087', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡山大道和纺城大道', '63', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_64', '1', '纺城大道和锡山大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.704401', '1', '2024-03-05 09:05:12.704401', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和锡山大道', '64', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_65', '1', '下穿立交积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.708106', '1', '2024-03-05 09:05:12.708106', '1', 1, '320214', NULL, '1', '0103000020B011000001000000050000005CF4E25AD1538341C15624EC11A24A41D7F4E50FCD5383417933FF98BDA14A4160E5C8FFD05383410ACC441A78A14A419DD26F4BD55383417B680536BFA14A415CF4E25AD1538341C15624EC11A24A41', NULL, NULL, NULL, NULL, '下穿立交积水', '65', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_66', '1', '学前街王兴记对面慢车道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.711931', '1', '2024-03-05 09:05:12.711931', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '学前街王兴记对面慢车道', '66', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_67', '1', '国际一花园东大门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.715455', '1', '2024-03-05 09:05:12.715455', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '国际一花园东大门口', '67', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_68', '1', '春暖路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.718872', '1', '2024-03-05 09:05:12.718872', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春暖路', '68', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_69', '1', '中山路君来梁溪饭店门口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.722371', '1', '2024-03-05 09:05:12.722371', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中山路君来梁溪饭店门口处', '69', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_70', '1', '春阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.725917', '1', '2024-03-05 09:05:12.725917', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春阳路', '70', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_71', '1', '江海路(春勤农贸市场)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.729452', '1', '2024-03-05 09:05:12.729452', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海路(春勤农贸市场)', '71', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_72', '1', '人民路一中体育馆', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.732844', '1', '2024-03-05 09:05:12.732844', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民路一中体育馆', '72', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_73', '1', '春阳路和春暖路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.73782', '1', '2024-03-05 09:05:12.73782', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春阳路和春暖路', '73', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_74', '1', '坊前镇新芳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.743129', '1', '2024-03-05 09:05:12.743129', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前镇新芳路', '74', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_75', '1', '人民路(五爱路)匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.747424', '1', '2024-03-05 09:05:12.747424', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民路(五爱路)匝道', '75', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_76', '1', '纺和路. 纺城大道. 金城东路路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.751047', '1', '2024-03-05 09:05:12.751047', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺和路. 纺城大道. 金城东路路段', '76', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_77', '1', '时代上城A区南门', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.75485', '1', '2024-03-05 09:05:12.75485', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '时代上城A区南门', '77', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_78', '1', '江溪街道坊前路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.758535', '1', '2024-03-05 09:05:12.758535', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道坊前路', '78', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_79', '1', '南方不锈钢交易中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.762551', '1', '2024-03-05 09:05:12.762551', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南方不锈钢交易中心', '79', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_80', '1', '江溪街道融侨观邸小区西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.766263', '1', '2024-03-05 09:05:12.766263', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道融侨观邸小区西门', '80', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_83', '1', '江溪街道万裕苑二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.769872', '1', '2024-03-05 09:05:12.769872', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道万裕苑二期', '83', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_84', '1', '金科米兰门口的江溪路一直到金
- 城路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.773605', '1', '2024-03-05 09:05:12.773605', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金科米兰门口的江溪路一直到金
- 城路', '84', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_86', '1', '下穿立交积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.777832', '1', '2024-03-05 09:05:12.777832', '1', 1, '320213', NULL, '1', '0103000020B01100000100000005000000AD43726C185383417AFE1C645BB24A411BDE30401F53834106C564F703B24A4102C50B8F16538341DE32D5B487B14A41F57E9A8F0E538341FC2E987F47B24A41AD43726C185383417AFE1C645BB24A41', NULL, NULL, NULL, NULL, '下穿立交积水', '86', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_88', '1', '前卫路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.781803', '1', '2024-03-05 09:05:12.781803', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前卫路', '88', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_89', '1', '万科东郡', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.785891', '1', '2024-03-05 09:05:12.785891', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '万科东郡', '89', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_90', '1', '安镇,润德里22号别墅(安镇)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.789898', '1', '2024-03-05 09:05:12.789898', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,润德里22号别墅(安镇)', '90', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_91', '1', '前卫路 250 号,太湖花园一期后门
- 口路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.793777', '1', '2024-03-05 09:05:12.793777', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前卫路 250 号,太湖花园一期后门
- 口路上', '91', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_92', '1', '羊尖,世纪嘉城别墅区', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.797652', '1', '2024-03-05 09:05:12.797652', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,世纪嘉城别墅区', '92', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_93', '1', '映月华府4号101(安镇)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.801368', '1', '2024-03-05 09:05:12.801368', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '映月华府4号101(安镇)', '93', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_94', '1', '锡新一路最东段的丁字路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.805085', '1', '2024-03-05 09:05:12.805085', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡新一路最东段的丁字路口', '94', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_95', '1', 'COCO蜜园小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.808592', '1', '2024-03-05 09:05:12.808592', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, 'COCO蜜园小区', '95', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_96', '1', '锡兴路和新光路交汇处', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.812128', '1', '2024-03-05 09:05:12.812128', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡兴路和新光路交汇处', '96', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_97', '1', '解放环路(教育研究院)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.815697', '1', '2024-03-05 09:05:12.815697', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '解放环路(教育研究院)', '97', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_98', '1', '春阳路, 金城高架下面', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.819311', '1', '2024-03-05 09:05:12.819311', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春阳路, 金城高架下面', '98', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_99', '1', '坊前,万裕苑北门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.822916', '1', '2024-03-05 09:05:12.822916', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前,万裕苑北门口', '99', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_100', '1', '中山路东侧汇金广场喇叭口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.82647', '1', '2024-03-05 09:05:12.82647', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中山路东侧汇金广场喇叭口', '100', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_101', '1', '广南路和锡沪路交叉口月星家具门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.829954', '1', '2024-03-05 09:05:12.829954', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广南路和锡沪路交叉口月星家具门口', '101', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_102', '1', '坊前,万裕苑二期南门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.833509', '1', '2024-03-05 09:05:12.833509', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前,万裕苑二期南门口', '102', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_103', '1', '坊前,鑫明路, 万裕苑门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.837066', '1', '2024-03-05 09:05:12.837066', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前,鑫明路, 万裕苑门口', '103', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_104', '1', '上马墩路,崇安集贸市场和华夏家具港中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.840765', '1', '2024-03-05 09:05:12.840765', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上马墩路,崇安集贸市场和华夏家具港中间', '104', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_105', '1', '新明西路58号,广益佳苑二期门面前', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.844326', '1', '2024-03-05 09:05:12.844326', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新明西路58号,广益佳苑二期门面前', '105', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_106', '1', '纺城大道,新世界国际门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.848019', '1', '2024-03-05 09:05:12.848019', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道,新世界国际门口', '106', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_107', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.851614', '1', '2024-03-05 09:05:12.851614', '1', 1, '320206', NULL, '1', '0103000020B01100000100000004000000B6D16BDC93528341BF2182DE9FB24A41615F99618F528341EF8564F6E0B14A41615F99618F528341EF8564F6E0B14A41B6D16BDC93528341BF2182DE9FB24A41', NULL, NULL, NULL, NULL, '道路积水', '107', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_108', '1', '纺城大道上,靠近锡山大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.855536', '1', '2024-03-05 09:05:12.855536', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道上,靠近锡山大道', '108', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_109', '1', '桐华路和毛岸路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.859021', '1', '2024-03-05 09:05:12.859021', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '桐华路和毛岸路路口', '109', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_110', '1', '江华路, 锡士路,往北', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.862854', '1', '2024-03-05 09:05:12.862854', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江华路, 锡士路,往北', '110', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_111', '1', '无锡地铁二号线靖海站', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.866716', '1', '2024-03-05 09:05:12.866716', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '无锡地铁二号线靖海站', '111', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_112', '1', '康诗丹郡花园小区东门', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.870572', '1', '2024-03-05 09:05:12.870572', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '康诗丹郡花园小区东门', '112', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_113', '1', '金城快速路,新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.874272', '1', '2024-03-05 09:05:12.874272', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城快速路,新阳路', '113', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_114', '1', '前进路,叙丰家园,前卫路, 金城高
- 架到万科东郡段', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.878176', '1', '2024-03-05 09:05:12.878176', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前进路,叙丰家园,前卫路, 金城高
- 架到万科东郡段', '114', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_115', '1', '学前东路(华东商贸城)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.881933', '1', '2024-03-05 09:05:12.881933', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '学前东路(华东商贸城)', '115', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_116', '1', '人民东路南匝道(唐巷)', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.885775', '1', '2024-03-05 09:05:12.885775', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民东路南匝道(唐巷)', '116', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_117', '1', '太湖花园一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.889987', '1', '2024-03-05 09:05:12.889987', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '太湖花园一期', '117', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_118', '1', '胡埭,孟村路,合欢西路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.89381', '1', '2024-03-05 09:05:12.89381', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭,孟村路,合欢西路口', '118', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_119', '1', '群兴路上,新风路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.897776', '1', '2024-03-05 09:05:12.897776', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路上,新风路路口', '119', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_120', '1', '行创四路. 旺庄路. 新光路一带', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.901736', '1', '2024-03-05 09:05:12.901736', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '行创四路. 旺庄路. 新光路一带', '120', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_121', '1', '山水东路82号,山水名苑旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.905422', '1', '2024-03-05 09:05:12.905422', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水东路82号,山水名苑旁', '121', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_122', '1', '泰山路和行创四路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.909107', '1', '2024-03-05 09:05:12.909107', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '泰山路和行创四路交界处', '122', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_123', '1', '洛社', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.912581', '1', '2024-03-05 09:05:12.912581', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社', '123', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_124', '1', '洛社镇杨市工业园区', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.916221', '1', '2024-03-05 09:05:12.916221', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社镇杨市工业园区', '124', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_125', '1', '旺庄立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.920697', '1', '2024-03-05 09:05:12.920697', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交', '125', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_126', '1', '旺庄立交桥往太湖新城方向', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.924197', '1', '2024-03-05 09:05:12.924197', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交桥往太湖新城方向', '126', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_127', '1', '无锡东站北进口和北出口的路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.928335', '1', '2024-03-05 09:05:12.928335', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '无锡东站北进口和北出口的路上', '127', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_128', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.932044', '1', '2024-03-05 09:05:12.932044', '1', 1, '320214', NULL, '1', '0103000020B0110000010000000400000066CF4D4A755483411FD5ECFBA1A94A410CC0105A6F5483419DBF0FE47CA84A410CC0105A6F5483419DBF0FE47CA84A4166CF4D4A755483411FD5ECFBA1A94A41', NULL, NULL, NULL, NULL, '道路积水', '128', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_129', '1', '锡沪路,高速桥洞下', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.936959', '1', '2024-03-05 09:05:12.936959', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡沪路,高速桥洞下', '129', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_130', '1', '旺庄路. 龙山路. 天山路. 锡兴路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.940501', '1', '2024-03-05 09:05:12.940501', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路. 龙山路. 天山路. 锡兴路', '130', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_131', '1', '旺庄路整条道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.944532', '1', '2024-03-05 09:05:12.944532', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路整条道路', '131', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_132', '1', '钱桥,苏嘉路21号汇华医药药店', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.948061', '1', '2024-03-05 09:05:12.948061', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥,苏嘉路21号汇华医药药店', '132', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_133', '1', '山北社区医院门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.951543', '1', '2024-03-05 09:05:12.951543', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山北社区医院门口', '133', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_134', '1', '香山路 7 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.95503', '1', '2024-03-05 09:05:12.95503', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '香山路 7 号', '134', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_135', '1', '金山四支路30号', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.958814', '1', '2024-03-05 09:05:12.958814', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金山四支路30号', '135', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_136', '1', '新区第一岗到机场高架路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.962659', '1', '2024-03-05 09:05:12.962659', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新区第一岗到机场高架路段', '136', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_137', '1', '新泰路和锡士路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.966339', '1', '2024-03-05 09:05:12.966339', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路和锡士路交界处', '137', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_138', '1', '广澄路上,凤翔路东面20米', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.96989', '1', '2024-03-05 09:05:12.96989', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广澄路上,凤翔路东面20米', '138', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_139', '1', '沁园路与清扬路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.973411', '1', '2024-03-05 09:05:12.973411', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '沁园路与清扬路路口', '139', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_140', '1', '新吴区公安消防大队', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.976934', '1', '2024-03-05 09:05:12.976934', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区公安消防大队', '140', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_141', '1', '兴昌路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.980643', '1', '2024-03-05 09:05:12.980643', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '兴昌路', '141', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_142', '1', '清名桥街道大窑路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.984216', '1', '2024-03-05 09:05:12.984216', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名桥街道大窑路上', '142', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_143', '1', '中南路隐秀路口东面', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.987857', '1', '2024-03-05 09:05:12.987857', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中南路隐秀路口东面', '143', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_144', '1', '长江路与旺庄路口和旺庄路与红
- 旗路交叉', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.991365', '1', '2024-03-05 09:05:12.991365', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路与旺庄路口和旺庄路与红
- 旗路交叉', '144', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_145', '1', '富力运河十号名龙路', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.994993', '1', '2024-03-05 09:05:12.994993', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '富力运河十号名龙路', '145', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_146', '1', '宝龙广场后面路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:12.998643', '1', '2024-03-05 09:05:12.998643', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '宝龙广场后面路上', '146', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_147', '1', '金科世界城闻艺路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.002204', '1', '2024-03-05 09:05:13.002204', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金科世界城闻艺路', '147', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_148', '1', '旺庄路,靠近春潮商业街到行创四
- 路中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.00596', '1', '2024-03-05 09:05:13.00596', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路,靠近春潮商业街到行创四
- 路中间', '148', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_149', '1', '蠡湖大道东侧快速路(隐秀路附近)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.009661', '1', '2024-03-05 09:05:13.009661', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蠡湖大道东侧快速路(隐秀路附近)', '149', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_210', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.320211', '1', '2024-03-05 09:05:18.320211', '1', 1, '320213', NULL, '1', '0101000020B011000074767292A2538341B7FA23DEC59E4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,瓷砖缺损', '210', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10125', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.32416', '1', '2024-03-05 09:05:18.32416', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖缺失二块', '10125', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_932', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.327843', '1', '2024-03-05 09:05:18.327843', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-07-22 00:00:00', NULL, '损坏程度:轻,永旺大桥由东向西17-3桥墩落水管缺失', '932', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_933', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.33149', '1', '2024-03-05 09:05:18.33149', '1', 1, '320213', NULL, '1', '0101000020B01100001CE1746C4B5383419A8C2A2315A84A41', NULL, NULL, '2023-07-22 00:00:00', NULL, '损坏位置:由西向东上坡处,井盖丢失', '933', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1047', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.335214', '1', '2024-03-05 09:05:18.335214', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:损坏,侧面砖松动三处', '1047', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1048', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.33897', '1', '2024-03-05 09:05:18.33897', '1', 1, '320213', NULL, '1', '0101000020B0110000E36CF3F6A1528341CFC534194AB24A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏类型:其他,沥青坑塘', '1048', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1063', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.342644', '1', '2024-03-05 09:05:18.342644', '1', 1, '320213', NULL, '1', '0101000020B01100006BB801C0FB538341C165C05DCE9C4A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:破损,沥青路面破损', '1063', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_903', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.346322', '1', '2024-03-05 09:05:18.346322', '1', 1, '320213', NULL, '1', '0101000020B0110000E8698725175383416FC6BEEE20B14A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:破损,落水管破损', '903', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1092', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.349998', '1', '2024-03-05 09:05:18.349998', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:其他,路平石起拱开裂约两米', '1092', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_20', '5', '缺陷-人行梯道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.353745', '1', '2024-03-05 09:05:18.353745', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)左、右幅 1#~4#孔下违停、违建,桥台装饰
- 板 1 处松动;(2)人行梯道 3 处露筋锈蚀(L 总=2.4m)、1 处破损露筋锈蚀(L=0.2m,S=0.24m
- 2)、面砖多处破损(S 总=0.20m2);(3)人行梯道底板 6 条横向裂缝(L 总=7.5m)、立柱 1 处蜂
- 窝(S=0.04m2)、5 处胀裂露筋锈蚀(L 总=0.5m)。', '20', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1208', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.357494', '1', '2024-03-05 09:05:18.357494', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏位置:蠡湖大道高架RU1匝道由北向南50m处,防撞墙被剐蹭', '1208', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1209', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.361123', '1', '2024-03-05 09:05:18.361123', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东33#伸缩缝边车道,锚固区破损', '1209', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_810', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.364872', '1', '2024-03-05 09:05:18.364872', '1', 1, '320213', NULL, '1', '0101000020B01100009261159CD453834124D74DF731A84A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏程度:轻,南丰桥由南向北,由北向南双向伸缩缝垃圾堵塞', '810', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_816', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.36866', '1', '2024-03-05 09:05:18.36866', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏类型:破损,道板砖破损一块,松动一块', '816', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_907', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.372491', '1', '2024-03-05 09:05:18.372491', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-07-28 00:00:00', NULL, '损坏程度:中,沥青拥包,面积约11个平方', '907', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_817', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.376763', '1', '2024-03-05 09:05:18.376763', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏位置:民丰桥由东向西伸缩缝垃圾堵塞,民丰桥由东向西伸缩缝垃圾堵塞', '817', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_818', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.380533', '1', '2024-03-05 09:05:18.380533', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏程度:轻,勤丰桥由西向东,由东向西双向伸缩缝垃圾堵塞', '818', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_819', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.384476', '1', '2024-03-05 09:05:18.384476', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏程度:轻,瓜市桥由西向东,桥面道板砖破损一块,开裂四块', '819', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_820', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.388213', '1', '2024-03-05 09:05:18.388213', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏位置:西汀桥由西向东,由东向西双向伸缩缝垃圾堵塞,西汀桥由西向东,由东向西双向伸缩缝垃圾堵塞', '820', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_821', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.392636', '1', '2024-03-05 09:05:18.392636', '1', 1, '320213', NULL, '1', '0101000020B01100005260C86610548341446E86B9C4A94A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏程度:中,落水管缺失', '821', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_276', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.396586', '1', '2024-03-05 09:05:18.396586', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏程度:轻,桥面砖松动二块', '276', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_277', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.400143', '1', '2024-03-05 09:05:18.400143', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块', '277', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10126', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.403755', '1', '2024-03-05 09:05:18.403755', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏位置:金城东路B匝道由西向东落地段,沥青裂缝,长度约为两米', '10126', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_150', '1', '锡士路, 东鼎家园西门门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.013403', '1', '2024-03-05 09:05:13.013403', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡士路, 东鼎家园西门门口', '150', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_151', '1', '蒋家湾', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.016954', '1', '2024-03-05 09:05:13.016954', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蒋家湾', '151', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_152', '1', '双河村,东泾113号一排', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.021359', '1', '2024-03-05 09:05:13.021359', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '双河村,东泾113号一排', '152', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_153', '1', '长江路, 泰山路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.025238', '1', '2024-03-05 09:05:13.025238', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路, 泰山路路口', '153', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10127', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.407703', '1', '2024-03-05 09:05:18.407703', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:轻,西汀桥由东向西,桥面盲道砖破损两块', '10127', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10128', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.411555', '1', '2024-03-05 09:05:18.411555', '1', 1, '320213', NULL, '1', '0101000020B01100004A4E74118E538341C8F528D641AF4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,限载牌变形', '10128', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10129', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.415307', '1', '2024-03-05 09:05:18.415307', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,栏杆底部砂浆脱落', '10129', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10130', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.418908', '1', '2024-03-05 09:05:18.418908', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-18 00:00:00', NULL, '损坏类型:破损,落水管破损', '10130', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10210', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.087074', '1', '2024-03-05 09:05:20.087074', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10210', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_154', '1', '锡泰路. 新兴路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.029687', '1', '2024-03-05 09:05:13.029687', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡泰路. 新兴路', '154', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_155', '1', '双河村,大庄42号,141号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.033521', '1', '2024-03-05 09:05:13.033521', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '双河村,大庄42号,141号', '155', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_156', '1', '高浪路高架泰伯大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.037739', '1', '2024-03-05 09:05:13.037739', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高浪路高架泰伯大道', '156', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_157', '1', '周庄114号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.041409', '1', '2024-03-05 09:05:13.041409', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '周庄114号', '157', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_158', '1', '梅村高级中学门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.045783', '1', '2024-03-05 09:05:13.045783', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村高级中学门口', '158', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_159', '1', '山北街道谈巷72号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.049625', '1', '2024-03-05 09:05:13.049625', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山北街道谈巷72号', '159', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_160', '1', '惠山街道水沟头', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.053892', '1', '2024-03-05 09:05:13.053892', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠山街道水沟头', '160', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_161', '1', '梅荆花园一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.058166', '1', '2024-03-05 09:05:13.058166', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅荆花园一期', '161', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_162', '1', '邹巷133号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.062456', '1', '2024-03-05 09:05:13.062456', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '邹巷133号', '162', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_163', '1', '梅里中路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.066169', '1', '2024-03-05 09:05:13.066169', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅里中路', '163', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_164', '1', '刘潭二村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.069698', '1', '2024-03-05 09:05:13.069698', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '刘潭二村', '164', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_165', '1', '梅村工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.073337', '1', '2024-03-05 09:05:13.073337', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村工业园', '165', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_166', '1', '梅村工业园丰西路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.077086', '1', '2024-03-05 09:05:13.077086', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村工业园丰西路', '166', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_167', '1', '大窑路,钢铁桥,邱家一弄', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.08064', '1', '2024-03-05 09:05:13.08064', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大窑路,钢铁桥,邱家一弄', '167', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_168', '1', '大窑路邱家二弄区域', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.084352', '1', '2024-03-05 09:05:13.084352', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大窑路邱家二弄区域', '168', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_169', '1', '梅村街道香梅人家小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.088051', '1', '2024-03-05 09:05:13.088051', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道香梅人家小区', '169', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_170', '1', '春阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.092131', '1', '2024-03-05 09:05:13.092131', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春阳路', '170', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_171', '1', '梅村街道新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.095699', '1', '2024-03-05 09:05:13.095699', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道新锦路', '171', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_172', '1', '清扬新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.099207', '1', '2024-03-05 09:05:13.099207', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清扬新村', '172', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_173', '1', '梅村街道张公路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.104001', '1', '2024-03-05 09:05:13.104001', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道张公路', '173', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_174', '1', '大窑路钢铁家舍', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.107551', '1', '2024-03-05 09:05:13.107551', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大窑路钢铁家舍', '174', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_175', '1', '尚品花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.111156', '1', '2024-03-05 09:05:13.111156', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '尚品花园', '175', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_176', '1', '沁园新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.114596', '1', '2024-03-05 09:05:13.114596', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '沁园新村', '176', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_177', '1', '新华路与金城路交界口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.118258', '1', '2024-03-05 09:05:13.118258', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路与金城路交界口', '177', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_178', '1', '太湖花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.121798', '1', '2024-03-05 09:05:13.121798', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '太湖花园', '178', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_179', '1', '新韵北路和新锦路中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.125921', '1', '2024-03-05 09:05:13.125921', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新韵北路和新锦路中间', '179', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_180', '1', '清名桥街道清扬路教育宿舍小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.129469', '1', '2024-03-05 09:05:13.129469', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名桥街道清扬路教育宿舍小区', '180', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_181', '1', '金城路到新华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.134061', '1', '2024-03-05 09:05:13.134061', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城路到新华路', '181', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_182', '1', '清名桥街道清扬新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.137787', '1', '2024-03-05 09:05:13.137787', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名桥街道清扬新村', '182', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_183', '1', '清名桥街道五星家园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.141485', '1', '2024-03-05 09:05:13.141485', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名桥街道五星家园', '183', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_184', '1', '新华路, 金城路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.146651', '1', '2024-03-05 09:05:13.146651', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路, 金城路', '184', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_185', '1', '梅村,新南中路,新蠡路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.150423', '1', '2024-03-05 09:05:13.150423', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,新南中路,新蠡路', '185', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_186', '1', '青一村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.15431', '1', '2024-03-05 09:05:13.15431', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青一村', '186', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_187', '1', '向阳新村179栋', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.158105', '1', '2024-03-05 09:05:13.158105', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '向阳新村179栋', '187', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_188', '1', '南新二路,驰润公司门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.161704', '1', '2024-03-05 09:05:13.161704', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南新二路,驰润公司门口', '188', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_189', '1', '金星村,戴倪巷43号(金星', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.165498', '1', '2024-03-05 09:05:13.165498', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金星村,戴倪巷43号(金星', '189', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_190', '1', '南新一路 5 号 6 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.16909', '1', '2024-03-05 09:05:13.16909', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南新一路 5 号 6 号', '190', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_191', '1', '江海南路往东亭方向匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.172785', '1', '2024-03-05 09:05:13.172785', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海南路往东亭方向匝道', '191', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_192', '1', '长江南路空港经济开发区门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.176363', '1', '2024-03-05 09:05:13.176363', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江南路空港经济开发区门口', '192', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_193', '1', '扬名花园26-30号(扬名', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.179804', '1', '2024-03-05 09:05:13.179804', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '扬名花园26-30号(扬名', '193', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_194', '1', '红旗街道李夹里 25 号-30 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.183283', '1', '2024-03-05 09:05:13.183283', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '红旗街道李夹里 25 号-30 号', '194', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_195', '1', '五星家园C块、西区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.186909', '1', '2024-03-05 09:05:13.186909', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五星家园C块、西区', '195', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10131', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.422594', '1', '2024-03-05 09:05:18.422594', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏位置:运河东路最右车道第一条伸缩缝处,沥青沉陷', '10131', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10132', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.426429', '1', '2024-03-05 09:05:18.426429', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:北侧,桥名牌不清', '10132', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10133', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.4301', '1', '2024-03-05 09:05:18.4301', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏位置:江海西路高架01标由东向西LD289处,伸缩缝防护钢板变形', '10133', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10134', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.434426', '1', '2024-03-05 09:05:18.434426', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾,桥梁东南侧人行道上伸缩缝混凝土搭板一处开裂', '10134', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10135', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.438511', '1', '2024-03-05 09:05:18.438511', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,广北大桥由西向东,桥面大理石砖破损三块', '10135', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10136', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.442538', '1', '2024-03-05 09:05:18.442538', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏位置:凤翔北路高架01标由南向北E3匝道旁,伸缩缝钢板翘起', '10136', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10137', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.446488', '1', '2024-03-05 09:05:18.446488', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏程度:中,锚固区破损有坑', '10137', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10138', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.450155', '1', '2024-03-05 09:05:18.450155', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10138', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10139', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.453875', '1', '2024-03-05 09:05:18.453875', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '10139', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10140', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.458855', '1', '2024-03-05 09:05:18.458855', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏位置:锡虞立交由西向东LD021向东10米处,沥青坑塘,损伤面积约1个平方', '10140', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_934', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.462606', '1', '2024-03-05 09:05:18.462606', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏程度:轻,江海路人行天桥跨路段,桥面大理石砖松动四处', '934', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_935', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.466516', '1', '2024-03-05 09:05:18.466516', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏类型:其他,伸缩缝型钢松动', '935', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_822', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.470253', '1', '2024-03-05 09:05:18.470253', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏程度:重,沥青坑塘', '822', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_823', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.473936', '1', '2024-03-05 09:05:18.473936', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖松动二块', '823', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_824', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.477889', '1', '2024-03-05 09:05:18.477889', '1', 1, '320213', NULL, '1', '0101000020B0110000199D3A90A053834107A3042DB9AB4A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:靖海桥由南向北,近2#伸缩缝处,路缘石开裂破损一处,靖海桥由南向北,近2#伸缩缝处,路缘石开裂破损一处', '824', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_827', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.481733', '1', '2024-03-05 09:05:18.481733', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道处,道板砖缺失两块', '827', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_197', '1', '旺庄东路茂业百货附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.190383', '1', '2024-03-05 09:05:13.190383', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄东路茂业百货附近', '197', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_198', '1', '金城东路新洲路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.194242', '1', '2024-03-05 09:05:13.194242', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城东路新洲路口', '198', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_199', '1', '旺庄街道群星社区大巷上 113 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.197981', '1', '2024-03-05 09:05:13.197981', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄街道群星社区大巷上 113 号', '199', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_828', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.485525', '1', '2024-03-05 09:05:18.485525', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏位置:凤翔路高架由南向北51#伸缩缝处,型钢存在高差', '828', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_829', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.489328', '1', '2024-03-05 09:05:18.489328', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏程度:中,防撞墙网裂', '829', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_133', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.493046', '1', '2024-03-05 09:05:18.493046', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭共5处,损伤面积约七个平方', '133', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1242', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.497364', '1', '2024-03-05 09:05:18.497364', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失五块', '1242', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_830', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.501297', '1', '2024-03-05 09:05:18.501297', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏位置:凤翔路高架51#伸缩缝由南向北约3m处,沥青坑塘(边车道)', '830', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_831', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.50516', '1', '2024-03-05 09:05:18.50516', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏程度:中,道板砖缺失9块', '831', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_832', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.509062', '1', '2024-03-05 09:05:18.509062', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '人行道,局部轻微', '832', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_833', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.512967', '1', '2024-03-05 09:05:18.512967', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '伸缩缝,局部轻微', '833', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_834', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.516819', '1', '2024-03-05 09:05:18.516819', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏类型:破损,桥面砖缺失一块', '834', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_835', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.521192', '1', '2024-03-05 09:05:18.521192', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏类型:破损,瓜市桥由西向东桥面道板砖破损一块', '835', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_836', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.525503', '1', '2024-03-05 09:05:18.525503', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏程度:中,一条横向裂缝,长度约7m', '836', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_838', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.530089', '1', '2024-03-05 09:05:18.530089', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏程度:中,泄水井盖缺失1个', '838', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_523', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.533945', '1', '2024-03-05 09:05:18.533945', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏类型:其他,广北大桥由西向东,桥面大理石砖翘起五块', '523', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_524', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.538541', '1', '2024-03-05 09:05:18.538541', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:损坏,局部轻微', '524', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_525', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.542479', '1', '2024-03-05 09:05:18.542479', '1', 1, '320213', NULL, '1', '0101000020B01100009C1AAF15F952834188AA0AADD2A24A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏程度:轻,局部轻微', '525', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_526', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.546587', '1', '2024-03-05 09:05:18.546587', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏位置:南侧桥头推坡道口道板砖缺失一块(19cm*19cm),局部轻微', '526', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_527', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.55187', '1', '2024-03-05 09:05:18.55187', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏程度:轻,局部轻微', '527', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_528', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.555641', '1', '2024-03-05 09:05:18.555641', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:损坏,道板破损缺失', '528', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_530', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.560128', '1', '2024-03-05 09:05:18.560128', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏程度:中,落水管破损', '530', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10141', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.564773', '1', '2024-03-05 09:05:18.564773', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,道板砖缺失10块', '10141', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_287', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.569018', '1', '2024-03-05 09:05:18.569018', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏类型:破损,桥面砖松动一块拱起九块', '287', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_288', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.573073', '1', '2024-03-05 09:05:18.573073', '1', 1, '320213', NULL, '1', '0101000020B0110000199D3A90A053834107A3042DB9AB4A41', NULL, NULL, '2023-10-29 00:00:00', NULL, '损坏位置:靖海桥由北向南,桥面道板砖缺失一块,靖海桥由北向南,桥面道板砖缺失一块', '288', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_301', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.576845', '1', '2024-03-05 09:05:18.576845', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏程度:轻,沥青裂缝', '301', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_189', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.580969', '1', '2024-03-05 09:05:18.580969', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块松动四个', '189', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_531', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.584787', '1', '2024-03-05 09:05:18.584787', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏位置:太湖大道高架由东向西LD052向西10米处,沥青网裂,损伤面积约两个平方', '531', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_532', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.588686', '1', '2024-03-05 09:05:18.588686', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '532', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_533', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.592504', '1', '2024-03-05 09:05:18.592504', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约一个平方', '533', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_534', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.596487', '1', '2024-03-05 09:05:18.596487', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:破损,江海路人行天桥由北向南,非机动车道上坡处,大理石砖松动破损一块', '534', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_535', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.60037', '1', '2024-03-05 09:05:18.60037', '1', 1, '320213', NULL, '1', '0101000020B011000049C9EB2033538341ABC2115867B44A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:刘潭桥浜桥由南向北人行道处,道板砖破损4块,松动两块', '535', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_200', '1', '新光村 82 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.201575', '1', '2024-03-05 09:05:13.201575', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光村 82 号', '200', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_202', '1', '旺庄立交下', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.20515', '1', '2024-03-05 09:05:13.20515', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交下', '202', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_203', '1', '群兴路 7 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.209011', '1', '2024-03-05 09:05:13.209011', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路 7 号', '203', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_204', '1', '群兴路新风路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.21255', '1', '2024-03-05 09:05:13.21255', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路新风路口', '204', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_536', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.604158', '1', '2024-03-05 09:05:18.604158', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '536', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_537', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.607894', '1', '2024-03-05 09:05:18.607894', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '537', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_538', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.611913', '1', '2024-03-05 09:05:18.611913', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '538', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_542', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.615831', '1', '2024-03-05 09:05:18.615831', '1', 1, '320213', NULL, '1', '0101000020B0110000C304AE2D16538341D73E1DA567B14A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '542', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_543', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.620024', '1', '2024-03-05 09:05:18.620024', '1', 1, '320213', NULL, '1', '0101000020B01100003DDB5C770B538341D5B9303850B24A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏类型:破损,道板砖破损一块', '543', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1181', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.624271', '1', '2024-03-05 09:05:18.624271', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:凤翔立交ES匝道由东往南9#伸缩缝处,防护钢板变形', '1181', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1186', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.628221', '1', '2024-03-05 09:05:18.628221', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,底座装饰板缺失', '1186', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1187', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.632183', '1', '2024-03-05 09:05:18.632183', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾,桥梁东南侧人行道上伸缩缝混凝土搭板一处开裂', '1187', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1188', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.636051', '1', '2024-03-05 09:05:18.636051', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾', '1188', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1191', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.640367', '1', '2024-03-05 09:05:18.640367', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:广北大桥由西向东,伸缩缝垃圾堵塞,广北大桥由西向东,伸缩缝垃圾堵塞', '1191', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1192', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.644258', '1', '2024-03-05 09:05:18.644258', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '车行道,局部轻微', '1192', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1193', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.648145', '1', '2024-03-05 09:05:18.648145', '1', 1, '320213', NULL, '1', '0101000020B01100002458DC6562528341F11D35F8F8A44A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '栏杆,局部轻微', '1193', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1194', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.652048', '1', '2024-03-05 09:05:18.652048', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏位置:凤翔北路高架01标由南向北E3匝道旁,伸缩缝钢板翘起', '1194', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1195', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.655839', '1', '2024-03-05 09:05:18.655839', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏类型:其他,落水管脱落', '1195', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_529', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.659595', '1', '2024-03-05 09:05:18.659595', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '人行道,局部轻微', '529', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_205', '1', '梅村,群兴产业园路边, 群兴路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.216379', '1', '2024-03-05 09:05:13.216379', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,群兴产业园路边, 群兴路上', '205', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_206', '1', '梅村,群兴路 7 号, 光大有限公司
- 旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.219938', '1', '2024-03-05 09:05:13.219938', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,群兴路 7 号, 光大有限公司
- 旁', '206', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_207', '1', '通扬路滨水路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.223426', '1', '2024-03-05 09:05:13.223426', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通扬路滨水路', '207', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_208', '1', '广南路与广吉路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.227139', '1', '2024-03-05 09:05:13.227139', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广南路与广吉路交叉口', '208', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_209', '1', '在梅村工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.230676', '1', '2024-03-05 09:05:13.230676', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '在梅村工业园', '209', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_210', '1', '锡达路, 靠近新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.234276', '1', '2024-03-05 09:05:13.234276', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡达路, 靠近新锦路', '210', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_211', '1', '广博路广南路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.239063', '1', '2024-03-05 09:05:13.239063', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广博路广南路交叉口', '211', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_212', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.242639', '1', '2024-03-05 09:05:13.242639', '1', 1, '320213', NULL, '1', '0103000020B011000001000000040000003CAB452696538341E823CDC082A24A419D47AF59AE5383415ECEF5EEF9A04A419D47AF59AE5383415ECEF5EEF9A04A413CAB452696538341E823CDC082A24A41', NULL, NULL, NULL, NULL, '道路积水', '212', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_213', '1', '纺城大道新世界和南方不锈钢市场门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.24664', '1', '2024-03-05 09:05:13.24664', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道新世界和南方不锈钢市场门口', '213', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_214', '1', '江南大学南门震泽路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.251248', '1', '2024-03-05 09:05:13.251248', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江南大学南门震泽路', '214', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_215', '1', '鸿声. 鸿西,马更上 40 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.254803', '1', '2024-03-05 09:05:13.254803', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿声. 鸿西,马更上 40 号', '215', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_216', '1', '通扬路沿线', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.258733', '1', '2024-03-05 09:05:13.258733', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通扬路沿线', '216', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_217', '1', '芦中路运河映', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.262285', '1', '2024-03-05 09:05:13.262285', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '芦中路运河映', '217', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_218', '1', '马山五号桥工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.265967', '1', '2024-03-05 09:05:13.265967', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '马山五号桥工业园', '218', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_219', '1', '梅梁新村主干线与另一条路的十
- 字路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.26948', '1', '2024-03-05 09:05:13.26948', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅梁新村主干线与另一条路的十
- 字路口', '219', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_220', '1', '后西溪', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.273021', '1', '2024-03-05 09:05:13.273021', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '后西溪', '220', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_221', '1', '广益街道靖海新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.276763', '1', '2024-03-05 09:05:13.276763', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广益街道靖海新村', '221', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_222', '1', '立泽路(融创茂段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.280387', '1', '2024-03-05 09:05:13.280387', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '立泽路(融创茂段)', '222', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_223', '1', '杨木桥,郑巷63号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.28424', '1', '2024-03-05 09:05:13.28424', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '杨木桥,郑巷63号', '223', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_224', '1', '水秀新村 210-203 室', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.288176', '1', '2024-03-05 09:05:13.288176', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '水秀新村 210-203 室', '224', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_225', '1', '新光路通扬路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.292396', '1', '2024-03-05 09:05:13.292396', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光路通扬路交叉口', '225', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_226', '1', '康桥熙园南门', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.29658', '1', '2024-03-05 09:05:13.29658', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '康桥熙园南门', '226', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_227', '1', '兴源中路(风雷立交靠火车道侧)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.300256', '1', '2024-03-05 09:05:13.300256', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '兴源中路(风雷立交靠火车道侧)', '227', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_228', '1', '滨湖区山水东路和楗成路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.304728', '1', '2024-03-05 09:05:13.304728', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '滨湖区山水东路和楗成路交叉口', '228', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_229', '1', '山水西路,南洋学校门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.308747', '1', '2024-03-05 09:05:13.308747', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水西路,南洋学校门口', '229', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_230', '1', '旺庄立交下穿通道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.312945', '1', '2024-03-05 09:05:13.312945', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交下穿通道', '230', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_231', '1', '建筑路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.316823', '1', '2024-03-05 09:05:13.316823', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '建筑路', '231', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_232', '1', '苏嘉路南段和盛岸西路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.321514', '1', '2024-03-05 09:05:13.321514', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '苏嘉路南段和盛岸西路交叉路口', '232', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_233', '1', '蠡湖大道跟和风路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.325834', '1', '2024-03-05 09:05:13.325834', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蠡湖大道跟和风路路口', '233', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_234', '1', '惠暨大道与堰联路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.330651', '1', '2024-03-05 09:05:13.330651', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠暨大道与堰联路交叉口', '234', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_235', '1', '人民路下穿兴源路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.334716', '1', '2024-03-05 09:05:13.334716', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民路下穿兴源路', '235', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_236', '1', '解放路和通益路的丁字路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.338631', '1', '2024-03-05 09:05:13.338631', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '解放路和通益路的丁字路路口', '236', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_237', '1', '仙蠡墩家园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.342457', '1', '2024-03-05 09:05:13.342457', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '仙蠡墩家园', '237', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_238', '1', '江溪街道富力桃园和瑞城花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.34639', '1', '2024-03-05 09:05:13.34639', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道富力桃园和瑞城花园', '238', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_239', '1', '江溪街道万裕苑一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.350057', '1', '2024-03-05 09:05:13.350057', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道万裕苑一期', '239', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_240', '1', '胡埭中学门口, 民生路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.353636', '1', '2024-03-05 09:05:13.353636', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭中学门口, 民生路', '240', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_241', '1', '胡埭,张舍过渡房门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.357103', '1', '2024-03-05 09:05:13.357103', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭,张舍过渡房门口', '241', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_242', '1', '江溪街道鑫明新村100号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.360537', '1', '2024-03-05 09:05:13.360537', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道鑫明新村100号', '242', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_243', '1', '胡埭,孟村路, 合欢西路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.364152', '1', '2024-03-05 09:05:13.364152', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭,孟村路, 合欢西路口', '243', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_244', '1', '江溪街道坊前万裕苑二区221栋', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.368054', '1', '2024-03-05 09:05:13.368054', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道坊前万裕苑二区221栋', '244', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_544', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.663211', '1', '2024-03-05 09:05:18.663211', '1', 1, '320213', NULL, '1', '0101000020B011000067AD6FE405538341319C32E196B24A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:福昌桥由东向西人行道处,道板砖破损,损伤面积约一个平方', '544', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_545', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.66687', '1', '2024-03-05 09:05:18.66687', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:桥梁伸缩缝,有杂物,需要清理养护', '545', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_594', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.670572', '1', '2024-03-05 09:05:18.670572', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:损坏,局部轻微', '594', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_546', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.67421', '1', '2024-03-05 09:05:18.67421', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:广北大桥由东向西,近4#伸缩缝处,桥面大理石砖开裂破损两块,广北大桥由东向西,近4#伸缩缝处,桥面大理石砖开裂破损两块', '546', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_547', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.67809', '1', '2024-03-05 09:05:18.67809', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '人行道,局部轻微', '547', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_548', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.681997', '1', '2024-03-05 09:05:18.681997', '1', 1, '320213', NULL, '1', '0101000020B01100008D1D1B71905383418146E954C1A04A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏类型:破损,露筋拱起', '548', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_549', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.685805', '1', '2024-03-05 09:05:18.685805', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '549', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_550', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.689671', '1', '2024-03-05 09:05:18.689671', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏程度:中,道板砖缺失5块', '550', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_551', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.693314', '1', '2024-03-05 09:05:18.693314', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '551', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_552', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.697142', '1', '2024-03-05 09:05:18.697142', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏程度:轻,局部轻微', '552', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_553', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.701424', '1', '2024-03-05 09:05:18.701424', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺损一块(19cm*19cm),局部轻微', '553', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10142', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.705224', '1', '2024-03-05 09:05:18.705224', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '10142', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_936', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.709457', '1', '2024-03-05 09:05:18.709457', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东起点处,沥青坑塘,约1个平方', '936', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_937', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.71342', '1', '2024-03-05 09:05:18.71342', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,约40cm', '937', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_554', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.717129', '1', '2024-03-05 09:05:18.717129', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '554', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_555', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.722647', '1', '2024-03-05 09:05:18.722647', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖破损一块松动一块', '555', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_245', '1', '江溪街道太湖花园一期在幼儿园对面147号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.371577', '1', '2024-03-05 09:05:13.371577', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道太湖花园一期在幼儿园对面147号', '245', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_246', '1', '山水东路 82 号,山水名苑旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.375091', '1', '2024-03-05 09:05:13.375091', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水东路 82 号,山水名苑旁', '246', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_247', '1', '天一城', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.378929', '1', '2024-03-05 09:05:13.378929', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '天一城', '247', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_556', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.726533', '1', '2024-03-05 09:05:18.726533', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北LD442向南10米处,沥青坑塘,损伤面积约一个平方', '556', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_557', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.730589', '1', '2024-03-05 09:05:18.730589', '1', 1, '320213', NULL, '1', '0101000020B01100001AA9B038BD5383418263CF50169B4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏位置:新锡立交高浪路主线由北往南LD110–LD94处多处,右侧多处防撞墙墙体腐蚀', '557', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_558', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.734909', '1', '2024-03-05 09:05:18.734909', '1', 1, '320213', NULL, '1', '0101000020B0110000E6B3FCC4115483412BA86F57849E4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏位置:高浪立交由东向南F匝道LD154处,右侧防撞墙墙体刮蹭', '558', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_559', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.740679', '1', '2024-03-05 09:05:18.740679', '1', 1, '320213', NULL, '1', '0101000020B0110000E69532E405538341B9CE4D3154AF4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏程度:重,沥青坑塘', '559', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_560', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.744853', '1', '2024-03-05 09:05:18.744853', '1', 1, '320213', NULL, '1', '0101000020B0110000E69532E405538341B9CE4D3154AF4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏程度:中,沥青裂缝一条', '560', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_561', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.748972', '1', '2024-03-05 09:05:18.748972', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏位置:劝学桥南向北,桥面砖破碎松动二块', '561', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_562', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.753101', '1', '2024-03-05 09:05:18.753101', '1', 1, '320213', NULL, '1', '0101000020B011000074767292A2538341B7FA23DEC59E4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏类型:破损,瓷砖缺失', '562', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_563', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.757218', '1', '2024-03-05 09:05:18.757218', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,大理石砖松动三块', '563', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_564', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.761346', '1', '2024-03-05 09:05:18.761346', '1', 1, '320213', NULL, '1', '0101000020B01100003783C6E28B54834192F19ACD4EA64A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭,油漆污染', '564', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_565', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.765836', '1', '2024-03-05 09:05:18.765836', '1', 1, '320213', NULL, '1', '0101000020B0110000E2CB8B2E9854834168A0F93660A34A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏类型:其他,路面2处沥青坑槽', '565', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_566', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.770065', '1', '2024-03-05 09:05:18.770065', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏位置:钱荣路高架由南向北LD033处,沥青拥包,损伤面积约三个平方', '566', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_567', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.773943', '1', '2024-03-05 09:05:18.773943', '1', 1, '320213', NULL, '1', '0101000020B0110000FE1CA60281528341F897A43EE7B24A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏类型:破损,平石破损', '567', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_568', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.777786', '1', '2024-03-05 09:05:18.777786', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏位置:锡虞立交由西向东LD021向东10米处,沥青坑塘,损伤面积约1个平方', '568', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_248', '1', '前进花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.382444', '1', '2024-03-05 09:05:13.382444', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前进花园', '248', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_249', '1', '太湖花园一区110号-157号区域', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.386778', '1', '2024-03-05 09:05:13.386778', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '太湖花园一区110号-157号区域', '249', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_250', '1', '堰桥西漳惠山大道与天丰路十字
- 路口旁边', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.390819', '1', '2024-03-05 09:05:13.390819', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '堰桥西漳惠山大道与天丰路十字
- 路口旁边', '250', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_251', '1', '招商城仓储中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.394981', '1', '2024-03-05 09:05:13.394981', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '招商城仓储中心', '251', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_252', '1', '广汇金色华府西门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.399376', '1', '2024-03-05 09:05:13.399376', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广汇金色华府西门口', '252', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_253', '1', '洛社镇兰溪路 1 号和 3 号厂中间的
- 兰溪路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.403722', '1', '2024-03-05 09:05:13.403722', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社镇兰溪路 1 号和 3 号厂中间的
- 兰溪路', '253', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_254', '1', '新友北路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.40731', '1', '2024-03-05 09:05:13.40731', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新友北路', '254', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_255', '1', '西漳公园附近十字路口右手边通
- 往万达广场方向有一条非机动车
- 道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.411335', '1', '2024-03-05 09:05:13.411335', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西漳公园附近十字路口右手边通
- 往万达广场方向有一条非机动车
- 道路', '255', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_256', '1', '城南路(建发上院)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.414973', '1', '2024-03-05 09:05:13.414973', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '城南路(建发上院)', '256', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_257', '1', '人民医院金城东路入口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.41847', '1', '2024-03-05 09:05:13.41847', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民医院金城东路入口处', '257', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_258', '1', '江华路,锡士路,往北', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.421905', '1', '2024-03-05 09:05:13.421905', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江华路,锡士路,往北', '258', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_259', '1', '金色江南一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.425558', '1', '2024-03-05 09:05:13.425558', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金色江南一期', '259', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_260', '1', '洛社工业园洛圻路 101 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.429478', '1', '2024-03-05 09:05:13.429478', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社工业园洛圻路 101 号', '260', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_261', '1', '胡埭老街,老市场内(胡埭', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.433671', '1', '2024-03-05 09:05:13.433671', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭老街,老市场内(胡埭', '261', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_262', '1', '惠钱路 129 号千峋酒店', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.437224', '1', '2024-03-05 09:05:13.437224', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠钱路 129 号千峋酒店', '262', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_263', '1', '无锡诚石轴承有限公司附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.440961', '1', '2024-03-05 09:05:13.440961', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '无锡诚石轴承有限公司附近', '263', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_264', '1', '惠山区橡树湾邸一期孙家面馆门
- 口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.444397', '1', '2024-03-05 09:05:13.444397', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠山区橡树湾邸一期孙家面馆门
- 口', '264', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_265', '1', '西环路至钱荣路之间的钱胡路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.448068', '1', '2024-03-05 09:05:13.448068', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西环路至钱荣路之间的钱胡路', '265', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_266', '1', '锡北镇锡港东路58号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.452784', '1', '2024-03-05 09:05:13.452784', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北镇锡港东路58号', '266', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_267', '1', '盛岸西路, 苏嘉路口,盛岸花园三
- 区旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.457564', '1', '2024-03-05 09:05:13.457564', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路, 苏嘉路口,盛岸花园三
- 区旁', '267', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_268', '1', '观山路左转到净慧东道到新发汇广场的路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.461151', '1', '2024-03-05 09:05:13.461151', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观山路左转到净慧东道到新发汇广场的路段', '268', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_269', '1', '梅西新村梅里中学家舍', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.464754', '1', '2024-03-05 09:05:13.464754', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅西新村梅里中学家舍', '269', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_270', '1', '盛岸西路,玉泉花园站台', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.468381', '1', '2024-03-05 09:05:13.468381', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路,玉泉花园站台', '270', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_271', '1', '钱桥,盛岸路, 金陵饭店旁边', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.471838', '1', '2024-03-05 09:05:13.471838', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥,盛岸路, 金陵饭店旁边', '271', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_272', '1', '枫丹御园22', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.475694', '1', '2024-03-05 09:05:13.475694', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '枫丹御园22', '272', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_273', '1', '鸿运苑中苑264号11号车库', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.479158', '1', '2024-03-05 09:05:13.479158', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿运苑中苑264号11号车库', '273', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_274', '1', '钱桥,苏嘉路 21 号汇华医药药店', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.482825', '1', '2024-03-05 09:05:13.482825', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥,苏嘉路 21 号汇华医药药店', '274', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_275', '1', '纺城大道上,靠近锡山大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.486412', '1', '2024-03-05 09:05:13.486412', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道上,靠近锡山大道', '275', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_276', '1', '盛岸西路. 苏嘉路,盛德路与玉泉
- 街道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.490091', '1', '2024-03-05 09:05:13.490091', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路. 苏嘉路,盛德路与玉泉
- 街道', '276', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_277', '1', '盛德路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.493688', '1', '2024-03-05 09:05:13.493688', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛德路', '277', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_278', '1', '南湖园路4号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.497585', '1', '2024-03-05 09:05:13.497585', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南湖园路4号', '278', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_279', '1', '旺庄路整条道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.501237', '1', '2024-03-05 09:05:13.501237', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路整条道路', '279', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_280', '1', '金色江南集景花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.504781', '1', '2024-03-05 09:05:13.504781', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金色江南集景花园', '280', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_281', '1', '雪梅路右转往航发路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.508527', '1', '2024-03-05 09:05:13.508527', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '雪梅路右转往航发路', '281', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_282', '1', '苏嘉路和盛德路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.512044', '1', '2024-03-05 09:05:13.512044', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '苏嘉路和盛德路', '282', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_283', '1', '胜丰路与江海西路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.515696', '1', '2024-03-05 09:05:13.515696', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胜丰路与江海西路交叉路口', '283', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_284', '1', '新城公园里面江华路196号和子足浴门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.520693', '1', '2024-03-05 09:05:13.520693', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新城公园里面江华路196号和子足浴门口', '284', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_285', '1', '城南路168号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.524649', '1', '2024-03-05 09:05:13.524649', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '城南路168号', '285', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_286', '1', '钱桥街道站头新村二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.529135', '1', '2024-03-05 09:05:13.529135', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥街道站头新村二期', '286', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_287', '1', '桃溪路, 火炬村附近桥洞内', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.532927', '1', '2024-03-05 09:05:13.532927', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '桃溪路, 火炬村附近桥洞内', '287', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_288', '1', '旺庄路,靠近春潮商业街到行创四路中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.536573', '1', '2024-03-05 09:05:13.536573', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路,靠近春潮商业街到行创四路中间', '288', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_289', '1', '新华路文景路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.541567', '1', '2024-03-05 09:05:13.541567', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路文景路', '289', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_290', '1', '西青路, 惠暨大道口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.545812', '1', '2024-03-05 09:05:13.545812', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西青路, 惠暨大道口', '290', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_291', '1', '洛社', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.549733', '1', '2024-03-05 09:05:13.549733', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社', '291', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_292', '1', '新锡路安泰路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.553586', '1', '2024-03-05 09:05:13.553586', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新锡路安泰路', '292', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_293', '1', '华夏名都门口和泽路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.557581', '1', '2024-03-05 09:05:13.557581', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '华夏名都门口和泽路段', '293', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_294', '1', '惠澄大道 999 号六区门口的小路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.561631', '1', '2024-03-05 09:05:13.561631', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠澄大道 999 号六区门口的小路', '294', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_295', '1', '团结路锡山大道至金城路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.565291', '1', '2024-03-05 09:05:13.565291', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '团结路锡山大道至金城路口', '295', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_296', '1', '洛社镇杨市工业园区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.569948', '1', '2024-03-05 09:05:13.569948', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社镇杨市工业园区', '296', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_297', '1', '前洲街道禾健物流园区旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.573898', '1', '2024-03-05 09:05:13.573898', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前洲街道禾健物流园区旁', '297', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_298', '1', '二泉路庄桥路至团结路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.5797', '1', '2024-03-05 09:05:13.5797', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路庄桥路至团结路口', '298', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_299', '1', '胜丰路与江海西路交叉口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.583293', '1', '2024-03-05 09:05:13.583293', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胜丰路与江海西路交叉口处', '299', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_300', '1', '联福路安泰二路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.586949', '1', '2024-03-05 09:05:13.586949', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联福路安泰二路', '300', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_301', '1', '国际一花园东大门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.591616', '1', '2024-03-05 09:05:13.591616', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '国际一花园东大门口', '301', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_302', '1', '渔港路(由东往西方向) 锦园(高
- 尔夫)公交站', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.59575', '1', '2024-03-05 09:05:13.59575', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '渔港路(由东往西方向) 锦园(高
- 尔夫)公交站', '302', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_303', '1', '东港镇锡港东路 22 号(东港)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.599534', '1', '2024-03-05 09:05:13.599534', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东港镇锡港东路 22 号(东港)', '303', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_304', '1', '高浪路,新区海关南门门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.603077', '1', '2024-03-05 09:05:13.603077', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高浪路,新区海关南门门口', '304', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_305', '1', '鸿山街道鸿西村牛鹏头', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.606944', '1', '2024-03-05 09:05:13.606944', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿山街道鸿西村牛鹏头', '305', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_306', '1', '锡北镇泾华路(锡北)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.61186', '1', '2024-03-05 09:05:13.61186', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北镇泾华路(锡北)', '306', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_307', '1', '安镇查桥的先锋中路(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.615358', '1', '2024-03-05 09:05:13.615358', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇查桥的先锋中路(商务区)', '307', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_308', '1', '联福路安泰一路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.619747', '1', '2024-03-05 09:05:13.619747', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联福路安泰一路', '308', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_309', '1', '东北塘承塘路(东北塘)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.624494', '1', '2024-03-05 09:05:13.624494', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东北塘承塘路(东北塘)', '309', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_310', '1', '友谊路新明路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.628366', '1', '2024-03-05 09:05:13.628366', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊路新明路', '310', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_311', '1', '怀仁路 67 号,三石电子厂门口路段
- (东港)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.632716', '1', '2024-03-05 09:05:13.632716', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '怀仁路 67 号,三石电子厂门口路段
- (东港)', '311', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_312', '1', '胶阳路联广路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.636534', '1', '2024-03-05 09:05:13.636534', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胶阳路联广路', '312', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_313', '1', '二泉路云竹路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.64054', '1', '2024-03-05 09:05:13.64054', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路云竹路', '313', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_314', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.644252', '1', '2024-03-05 09:05:13.644252', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '314', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_315', '1', '二泉路健鼎门口路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.647913', '1', '2024-03-05 09:05:13.647913', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路健鼎门口路段', '315', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_316', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.651586', '1', '2024-03-05 09:05:13.651586', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '316', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_317', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.65538', '1', '2024-03-05 09:05:13.65538', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '317', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_318', '1', '锡兴路江华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.659006', '1', '2024-03-05 09:05:13.659006', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡兴路江华路', '318', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_319', '1', '金科米兰', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.662986', '1', '2024-03-05 09:05:13.662986', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金科米兰', '319', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_320', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.66777', '1', '2024-03-05 09:05:13.66777', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '320', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_321', '1', '黄山路立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.671535', '1', '2024-03-05 09:05:13.671535', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '黄山路立交', '321', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_322', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.675236', '1', '2024-03-05 09:05:13.675236', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '322', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_323', '1', '兴源路,金城高架下面, 靠华侨城', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.679228', '1', '2024-03-05 09:05:13.679228', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '兴源路,金城高架下面, 靠华侨城', '323', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_324', '1', '广瑞路盛阳食品城至加油站段', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.68303', '1', '2024-03-05 09:05:13.68303', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广瑞路盛阳食品城至加油站段', '324', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_325', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.686772', '1', '2024-03-05 09:05:13.686772', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '325', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_326', '1', '长江北路太湖花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.690416', '1', '2024-03-05 09:05:13.690416', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江北路太湖花园', '326', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_569', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.781721', '1', '2024-03-05 09:05:18.781721', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏程度:轻,人行道加高带破损', '569', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_570', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.785662', '1', '2024-03-05 09:05:18.785662', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺损四块(每块19cm*19cm),局部轻微', '570', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_571', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.789477', '1', '2024-03-05 09:05:18.789477', '1', 1, '320213', NULL, '1', '0101000020B0110000BF4D7FEC1D55834135F2076F89AD4A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:其他,护板丢失2个,脱落1个', '571', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_572', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.794619', '1', '2024-03-05 09:05:18.794619', '1', 1, '320213', NULL, '1', '0101000020B01100004120DE66CD54834183B5A34C9BA64A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:其他,有杂草', '572', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_573', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.798826', '1', '2024-03-05 09:05:18.798826', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏位置:青祁路高架由南向北30墩,落水管破损', '573', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_574', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.802928', '1', '2024-03-05 09:05:18.802928', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏位置:青祁路高架由南向北29#墩,落水管破损', '574', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_575', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.806734', '1', '2024-03-05 09:05:18.806734', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,落水管破损', '575', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_576', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.810755', '1', '2024-03-05 09:05:18.810755', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏程度:中,落水管破损', '576', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_577', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.814333', '1', '2024-03-05 09:05:18.814333', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,排水设施损坏', '577', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_595', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.818011', '1', '2024-03-05 09:05:18.818011', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏程度:轻,局部轻微', '595', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_401', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.821698', '1', '2024-03-05 09:05:18.821698', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:中,道板砖开裂破损6块', '401', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_402', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.825268', '1', '2024-03-05 09:05:18.825268', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '402', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10143', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.829029', '1', '2024-03-05 09:05:18.829029', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:其他,东风桥由西向东,沥青路面一处拥抱', '10143', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10144', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.832881', '1', '2024-03-05 09:05:18.832881', '1', 1, '320213', NULL, '1', '0101000020B01100002789DE7A8C54834198E5EB6649A64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,防撞墙右侧墙体刮蹭', '10144', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_938', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.836614', '1', '2024-03-05 09:05:18.836614', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏位置:凤翔路高架D2匝道2#伸缩缝向南25米处,沥青裂缝', '938', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_939', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.840446', '1', '2024-03-05 09:05:18.840446', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道处,道板砖缺失4块', '939', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_327', '1', '和风路博览中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.694016', '1', '2024-03-05 09:05:13.694016', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路博览中心', '327', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_941', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.844458', '1', '2024-03-05 09:05:18.844458', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '人行道,局部轻微', '941', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_942', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.84873', '1', '2024-03-05 09:05:18.84873', '1', 1, '320213', NULL, '1', '0101000020B0110000C08274FA2F538341108255E51FB04A41', NULL, NULL, '2023-07-20 00:00:00', NULL, '损坏程度:轻,两新桥由南向北,路缘石涂装开裂破损一处', '942', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_943', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.852683', '1', '2024-03-05 09:05:18.852683', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-20 00:00:00', NULL, '损坏位置:阅溪桥西往东,桥面砖大理石脱落一块', '943', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_944', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.856629', '1', '2024-03-05 09:05:18.856629', '1', 1, '320213', NULL, '1', '0101000020B01100001061836DED538341E7847BABC69D4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:损坏,栏杆饰面脱落', '944', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_945', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.860343', '1', '2024-03-05 09:05:18.860343', '1', 1, '320213', NULL, '1', '0101000020B0110000D8CA4489A55383419A95B42635A04A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏程度:轻,栏杆基础破损', '945', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10145', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.864169', '1', '2024-03-05 09:05:18.864169', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '①桥面铺装未见异常。 \n②全桥排水系统泄水孔堵塞。 \n③护栏存在防撞墙锈胀露筋 1 处,面积 0.03m 2。 \n④附属设施电力箱盖缺失 2 处。 \n⑤桥头平顺未见明显异常。 \n⑥伸缩缝未见异常。 ', '10145', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10146', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.868184', '1', '2024-03-05 09:05:18.868184', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:其他,防撞墙被剐蹭,损伤面积约10个平方', '10146', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10147', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.871782', '1', '2024-03-05 09:05:18.871782', '1', 1, '320213', NULL, '1', '0101000020B0110000AA79872FBB538341AC51814108AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,测试松动', '10147', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_946', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.875706', '1', '2024-03-05 09:05:18.875706', '1', 1, '320213', NULL, '1', '0101000020B011000071BB10A9E1538341D7718A408F9E4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏程度:轻,栏杆锈蚀,基础破损', '946', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_947', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.879547', '1', '2024-03-05 09:05:18.879547', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:损坏,道板破损缺失', '947', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_948', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.883537', '1', '2024-03-05 09:05:18.883537', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:其他,江海路人行天桥跨路段,桥面大理石砖松动五块', '948', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_949', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.888006', '1', '2024-03-05 09:05:18.888006', '1', 1, '320213', NULL, '1', '0101000020B011000025EEB124FE5283419B10AC4A69924A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:损坏,含翠桥南往北锚固区破损', '949', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_951', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.892204', '1', '2024-03-05 09:05:18.892204', '1', 1, '320213', NULL, '1', '0101000020B011000006C982D3275383414B66F5840BAB4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:破损,侧石破损', '951', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_596', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.89656', '1', '2024-03-05 09:05:18.89656', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:破损,落水管破损', '596', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_328', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.697547', '1', '2024-03-05 09:05:13.697547', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '328', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_329', '1', '道路积水(厚桥)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.701668', '1', '2024-03-05 09:05:13.701668', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(厚桥)', '329', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_330', '1', '观山路沿线', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.705139', '1', '2024-03-05 09:05:13.705139', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观山路沿线', '330', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_331', '1', '道路积水(锡北)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.708934', '1', '2024-03-05 09:05:13.708934', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(锡北)', '331', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_332', '1', '新华路文景路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.712716', '1', '2024-03-05 09:05:13.712716', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路文景路', '332', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_333', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.716234', '1', '2024-03-05 09:05:13.716234', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '333', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_334', '1', '朗诗天萃', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.719918', '1', '2024-03-05 09:05:13.719918', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朗诗天萃', '334', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_335', '1', '春阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.723887', '1', '2024-03-05 09:05:13.723887', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春阳路', '335', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_336', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.727911', '1', '2024-03-05 09:05:13.727911', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '336', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_337', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.732114', '1', '2024-03-05 09:05:13.732114', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水', '337', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_338', '1', '锡兴路和新光路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.737056', '1', '2024-03-05 09:05:13.737056', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡兴路和新光路', '338', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_339', '1', '锡新一路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.741837', '1', '2024-03-05 09:05:13.741837', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡新一路', '339', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_340', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.745427', '1', '2024-03-05 09:05:13.745427', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水', '340', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_341', '1', '万科东郡', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.749612', '1', '2024-03-05 09:05:13.749612', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '万科东郡', '341', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_342', '1', '道路积水(锡北)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.753064', '1', '2024-03-05 09:05:13.753064', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(锡北)', '342', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_343', '1', '会岸路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.756712', '1', '2024-03-05 09:05:13.756712', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '会岸路', '343', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_344', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.76022', '1', '2024-03-05 09:05:13.76022', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '344', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_345', '1', '广瑞路盛阳食品城至加油站段', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.763887', '1', '2024-03-05 09:05:13.763887', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广瑞路盛阳食品城至加油站段', '345', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_346', '1', '通江大道辅道(食品北路交叉口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.767532', '1', '2024-03-05 09:05:13.767532', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通江大道辅道(食品北路交叉口)', '346', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_347', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.771643', '1', '2024-03-05 09:05:13.771643', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '347', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_348', '1', '硕放区域,主要是墙宅路沿线', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.776493', '1', '2024-03-05 09:05:13.776493', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '硕放区域,主要是墙宅路沿线', '348', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_349', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.780186', '1', '2024-03-05 09:05:13.780186', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '349', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_350', '1', '仙蠡墩家园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.785732', '1', '2024-03-05 09:05:13.785732', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '仙蠡墩家园', '350', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_351', '1', '南泉镇裕村南邵东35号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.789826', '1', '2024-03-05 09:05:13.789826', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南泉镇裕村南邵东35号', '351', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_352', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.79344', '1', '2024-03-05 09:05:13.79344', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '352', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_353', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.796982', '1', '2024-03-05 09:05:13.796982', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '353', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_354', '1', '景瑞望府小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.801093', '1', '2024-03-05 09:05:13.801093', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '景瑞望府小区', '354', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_355', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.804701', '1', '2024-03-05 09:05:13.804701', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '355', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_356', '1', '聚江苑小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.808381', '1', '2024-03-05 09:05:13.808381', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '聚江苑小区', '356', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_357', '1', '黄山路立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.813007', '1', '2024-03-05 09:05:13.813007', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '黄山路立交', '357', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_358', '1', '道路积水(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.817899', '1', '2024-03-05 09:05:13.817899', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(羊尖)', '358', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_359', '1', '道路积水(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.821617', '1', '2024-03-05 09:05:13.821617', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(羊尖)', '359', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_360', '1', '新泰路(机场路-长江南路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.825582', '1', '2024-03-05 09:05:13.825582', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路(机场路-长江南路)', '360', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_361', '1', '道路积水(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.829237', '1', '2024-03-05 09:05:13.829237', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(羊尖)', '361', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_362', '1', '锡贤路到纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.833114', '1', '2024-03-05 09:05:13.833114', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡贤路到纺城大道', '362', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_363', '1', '道路积水(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.836982', '1', '2024-03-05 09:05:13.836982', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(羊尖)', '363', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_364', '1', '旺庄路宝龙广场附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.841026', '1', '2024-03-05 09:05:13.841026', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路宝龙广场附近', '364', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_366', '1', '道路积水(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.844768', '1', '2024-03-05 09:05:13.844768', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(羊尖)', '366', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_367', '1', '锡澄路赛格电子市场对面慢车道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.848314', '1', '2024-03-05 09:05:13.848314', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡澄路赛格电子市场对面慢车道', '367', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_368', '1', '坊前路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.852015', '1', '2024-03-05 09:05:13.852015', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前路', '368', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_369', '1', '道路积水: 污水主管网倒灌,导致
- 路面来不及排放(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.855756', '1', '2024-03-05 09:05:13.855756', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水: 污水主管网倒灌,导致
- 路面来不及排放(羊尖)', '369', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_370', '1', '万裕苑一期221号101(坊前)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.859702', '1', '2024-03-05 09:05:13.859702', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '万裕苑一期221号101(坊前)', '370', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_371', '1', '道路积水(商务区)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.864797', '1', '2024-03-05 09:05:13.864797', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(商务区)', '371', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_372', '1', 'LD548', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.869522', '1', '2024-03-05 09:05:13.869522', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, 'LD548', '372', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_373', '1', '道路积水(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.8734', '1', '2024-03-05 09:05:13.8734', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(云林)', '373', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_374', '1', '凤翔立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.878166', '1', '2024-03-05 09:05:13.878166', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '凤翔立交', '374', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_375', '1', '新光路运河东路匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.882024', '1', '2024-03-05 09:05:13.882024', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光路运河东路匝道', '375', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_376', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.885777', '1', '2024-03-05 09:05:13.885777', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '376', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_377', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.889481', '1', '2024-03-05 09:05:13.889481', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '377', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_378', '1', '扬名街道新联社区丁巷63号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.89366', '1', '2024-03-05 09:05:13.89366', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '扬名街道新联社区丁巷63号', '378', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_379', '1', '扬名街道中联新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.897224', '1', '2024-03-05 09:05:13.897224', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '扬名街道中联新村', '379', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_380', '1', '道路积水(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.90093', '1', '2024-03-05 09:05:13.90093', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '道路积水(东亭)', '380', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_381', '1', '中桥三村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.904638', '1', '2024-03-05 09:05:13.904638', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中桥三村', '381', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_382', '1', '东北塘', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.908264', '1', '2024-03-05 09:05:13.908264', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东北塘', '382', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_383', '1', '广益街道广丰三村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.911943', '1', '2024-03-05 09:05:13.911943', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广益街道广丰三村', '383', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_384', '1', '人民路(鹅湖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.915607', '1', '2024-03-05 09:05:13.915607', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民路(鹅湖)', '384', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_385', '1', '盛岸路,孔泾里20号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.919336', '1', '2024-03-05 09:05:13.919336', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸路,孔泾里20号', '385', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_386', '1', '月溪路(鹅湖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.922908', '1', '2024-03-05 09:05:13.922908', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '月溪路(鹅湖)', '386', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_387', '1', '延祥路(鹅湖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.926351', '1', '2024-03-05 09:05:13.926351', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '延祥路(鹅湖)', '387', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_388', '1', '北大街街道锡澄二村', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.929972', '1', '2024-03-05 09:05:13.929972', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '北大街街道锡澄二村', '388', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_389', '1', '观山路市民中心西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.933476', '1', '2024-03-05 09:05:13.933476', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观山路市民中心西门', '389', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_390', '1', '西环线环湖路不到处', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.937002', '1', '2024-03-05 09:05:13.937002', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西环线环湖路不到处', '390', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_391', '1', '青虹路(鹅湖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.940532', '1', '2024-03-05 09:05:13.940532', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青虹路(鹅湖)', '391', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_392', '1', '中信泰富锦辰的售楼处', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.944386', '1', '2024-03-05 09:05:13.944386', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中信泰富锦辰的售楼处', '392', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_393', '1', '上马墩的靖海公园', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.94791', '1', '2024-03-05 09:05:13.94791', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上马墩的靖海公园', '393', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_394', '1', '锡北泾新路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.951729', '1', '2024-03-05 09:05:13.951729', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北泾新路', '394', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_395', '1', '广益街道尤渡社区塘桥头', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.955307', '1', '2024-03-05 09:05:13.955307', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广益街道尤渡社区塘桥头', '395', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_396', '1', '锡北泾声路. 泉山路. 西新路', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.959311', '1', '2024-03-05 09:05:13.959311', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北泾声路. 泉山路. 西新路', '396', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_397', '1', '锡北镇道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.962941', '1', '2024-03-05 09:05:13.962941', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北镇道路积水', '397', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_398', '1', '新阳路9号', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.966733', '1', '2024-03-05 09:05:13.966733', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新阳路9号', '398', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_399', '1', '东港镇道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.970553', '1', '2024-03-05 09:05:13.970553', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东港镇道路积水', '399', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_400', '1', '芦庄四区', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.974492', '1', '2024-03-05 09:05:13.974492', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '芦庄四区', '400', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_401', '1', '荟聚片区(二泉路健鼎段. 荟聚段.
- 坊达路) 积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.978309', '1', '2024-03-05 09:05:13.978309', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '荟聚片区(二泉路健鼎段. 荟聚段.
- 坊达路) 积水', '401', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_402', '1', '德先路与立德道、立信大道交叉口 ', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.982409', '1', '2024-03-05 09:05:13.982409', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '德先路与立德道、立信大道交叉口 ', '402', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_403', '1', '大剧院路(大剧院广场)', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.986255', '1', '2024-03-05 09:05:13.986255', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大剧院路(大剧院广场)', '403', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_404', '1', '信成道与观山路西北侧', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.990259', '1', '2024-03-05 09:05:13.990259', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '信成道与观山路西北侧', '404', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_405', '1', '观顺道与震泽路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.994402', '1', '2024-03-05 09:05:13.994402', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观顺道与震泽路交叉口', '405', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_406', '1', '丰润道与震泽路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:13.998201', '1', '2024-03-05 09:05:13.998201', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '丰润道与震泽路路口', '406', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_407', '1', '和风路博览中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.001904', '1', '2024-03-05 09:05:14.001904', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路博览中心', '407', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_408', '1', '中山路东侧汇金广场喇叭口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.005677', '1', '2024-03-05 09:05:14.005677', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中山路东侧汇金广场喇叭口', '408', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_409', '1', '观顺道海岸城门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.009661', '1', '2024-03-05 09:05:14.009661', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观顺道海岸城门口', '409', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_410', '1', '江溪街道纺城大道附近五洲', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.013597', '1', '2024-03-05 09:05:14.013597', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道纺城大道附近五洲', '410', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_411', '1', '深港天地', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.017283', '1', '2024-03-05 09:05:14.017283', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '深港天地', '411', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_412', '1', '五洲国际工业博览园附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.021058', '1', '2024-03-05 09:05:14.021058', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际工业博览园附近', '412', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_413', '1', '五洲国际轻纺城', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.024697', '1', '2024-03-05 09:05:14.024697', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际轻纺城', '413', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_414', '1', '五洲国际商贸城附近新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.028358', '1', '2024-03-05 09:05:14.028358', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '五洲国际商贸城附近新阳路', '414', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_415', '1', '锡达路222号周围', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.031892', '1', '2024-03-05 09:05:14.031892', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡达路222号周围', '415', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_416', '1', '锡贤路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.035903', '1', '2024-03-05 09:05:14.035903', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡贤路', '416', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_417', '1', '友谊中路128号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.039609', '1', '2024-03-05 09:05:14.039609', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊中路128号', '417', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_418', '1', '青祁路红山花园东门', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.044031', '1', '2024-03-05 09:05:14.044031', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青祁路红山花园东门', '418', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_419', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.048001', '1', '2024-03-05 09:05:14.048001', '1', 1, '320211', NULL, '1', '0103000020B01100000100000004000000D6F11C959D5283410A769C7A449C4A4184598837C4528341A40B7F6C149A4A4184598837C4528341A40B7F6C149A4A41D6F11C959D5283410A769C7A449C4A41', NULL, NULL, NULL, NULL, '道路积水', '419', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_420', '1', '中山路君来梁溪饭店门口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.052102', '1', '2024-03-05 09:05:14.052102', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '中山路君来梁溪饭店门口处', '420', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_421', '1', '胡埭,张舍过渡房门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.055936', '1', '2024-03-05 09:05:14.055936', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭,张舍过渡房门口', '421', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_422', '1', '江南大学南门震泽路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.059768', '1', '2024-03-05 09:05:14.059768', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江南大学南门震泽路', '422', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_423', '1', '山水西路,南洋学校门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.063963', '1', '2024-03-05 09:05:14.063963', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水西路,南洋学校门口', '423', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_424', '1', '月星家具附近的广南路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.067892', '1', '2024-03-05 09:05:14.067892', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '月星家具附近的广南路', '424', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_425', '1', '石门路会龙桥南侧', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.071722', '1', '2024-03-05 09:05:14.071722', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '石门路会龙桥南侧', '425', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_426', '1', '清名一村的对面通扬南路的81路公交站', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.075857', '1', '2024-03-05 09:05:14.075857', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名一村的对面通扬南路的81路公交站', '426', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_427', '1', '永乐西路清扬路西面', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.079842', '1', '2024-03-05 09:05:14.079842', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '永乐西路清扬路西面', '427', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_428', '1', '长江路,泰山路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.083693', '1', '2024-03-05 09:05:14.083693', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路,泰山路路口', '428', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_429', '1', '大浮,漆塘苑292栋一楼', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.087455', '1', '2024-03-05 09:05:14.087455', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大浮,漆塘苑292栋一楼', '429', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_430', '1', '锡义路到纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.09106', '1', '2024-03-05 09:05:14.09106', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡义路到纺城大道', '430', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_431', '1', '新风路57号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.094718', '1', '2024-03-05 09:05:14.094718', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新风路57号', '431', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_432', '1', '运河东路东侧锡山大桥下方', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.098969', '1', '2024-03-05 09:05:14.098969', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河东路东侧锡山大桥下方', '432', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_433', '1', '人民东路广瑞路交口东北处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.102637', '1', '2024-03-05 09:05:14.102637', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民东路广瑞路交口东北处', '433', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_434', '1', '江溪街道锡义路77号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.106604', '1', '2024-03-05 09:05:14.106604', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道锡义路77号', '434', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_435', '1', '前卫路250号,太湖花园一期后门口路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.110625', '1', '2024-03-05 09:05:14.110625', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前卫路250号,太湖花园一期后门口路上', '435', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_436', '1', '金城快速路,新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.114443', '1', '2024-03-05 09:05:14.114443', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城快速路,新阳路', '436', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_437', '1', '金城路高架下面,团结路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.118671', '1', '2024-03-05 09:05:14.118671', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城路高架下面,团结路路口', '437', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_438', '1', '太湖花园一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.122705', '1', '2024-03-05 09:05:14.122705', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '太湖花园一期', '438', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_439', '1', '群兴路上,新风路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.126703', '1', '2024-03-05 09:05:14.126703', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路上,新风路路口', '439', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_440', '1', '泰山路和行创四路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.130898', '1', '2024-03-05 09:05:14.130898', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '泰山路和行创四路交界处', '440', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_441', '1', '旺庄立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.13445', '1', '2024-03-05 09:05:14.13445', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交', '441', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_442', '1', '旺庄立交桥往太湖新城方向', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.138196', '1', '2024-03-05 09:05:14.138196', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄立交桥往太湖新城方向', '442', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_443', '1', '羊尖镇锡沪路161号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.142018', '1', '2024-03-05 09:05:14.142018', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇锡沪路161号', '443', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_444', '1', '新光路通扬路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.145743', '1', '2024-03-05 09:05:14.145743', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光路通扬路交叉口', '444', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_445', '1', '运河西路转震泽路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.149704', '1', '2024-03-05 09:05:14.149704', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河西路转震泽路', '445', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_446', '1', '羊尖镇锡沪西路100号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.153354', '1', '2024-03-05 09:05:14.153354', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇锡沪西路100号', '446', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_447', '1', '羊尖镇羊严路2号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.157186', '1', '2024-03-05 09:05:14.157186', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇羊严路2号', '447', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_448', '1', '红星村', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.160872', '1', '2024-03-05 09:05:14.160872', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '红星村', '448', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_449', '1', '朱巷', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.164739', '1', '2024-03-05 09:05:14.164739', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朱巷', '449', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_450', '1', '锡贤路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.168784', '1', '2024-03-05 09:05:14.168784', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡贤路上', '450', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_451', '1', '朗诗青春未来家园西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.172607', '1', '2024-03-05 09:05:14.172607', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朗诗青春未来家园西门', '451', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_452', '1', '香山路7号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.176471', '1', '2024-03-05 09:05:14.176471', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '香山路7号', '452', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_453', '1', '新区第一岗到机场高架路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.180052', '1', '2024-03-05 09:05:14.180052', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新区第一岗到机场高架路段', '453', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_454', '1', '新泰路和锡士路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.183967', '1', '2024-03-05 09:05:14.183967', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路和锡士路交界处', '454', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_455', '1', '新吴区公安消防大队', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.187927', '1', '2024-03-05 09:05:14.187927', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区公安消防大队', '455', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_456', '1', '青祁路湖滨幼儿园处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.191883', '1', '2024-03-05 09:05:14.191883', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青祁路湖滨幼儿园处', '456', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_457', '1', '荣巷街道陆井新村208号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.196684', '1', '2024-03-05 09:05:14.196684', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '荣巷街道陆井新村208号', '457', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_458', '1', '兴昌路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.200568', '1', '2024-03-05 09:05:14.200568', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '兴昌路', '458', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_459', '1', '长江路与旺庄路口和旺庄路与红旗路交叉', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.204253', '1', '2024-03-05 09:05:14.204253', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路与旺庄路口和旺庄路与红旗路交叉', '459', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_460', '1', '宝龙广场后面路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.20797', '1', '2024-03-05 09:05:14.20797', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '宝龙广场后面路上', '460', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_461', '1', '梅里中路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.211687', '1', '2024-03-05 09:05:14.211687', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅里中路', '461', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_462', '1', '梅村工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.216051', '1', '2024-03-05 09:05:14.216051', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村工业园', '462', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_463', '1', '梅村工业园丰西路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.219874', '1', '2024-03-05 09:05:14.219874', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村工业园丰西路', '463', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_464', '1', '梅村街道新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.224561', '1', '2024-03-05 09:05:14.224561', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道新锦路', '464', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_465', '1', '梅村街道张公路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.228211', '1', '2024-03-05 09:05:14.228211', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道张公路', '465', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_466', '1', '梅村新洲路218号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.231909', '1', '2024-03-05 09:05:14.231909', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村新洲路218号', '466', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_467', '1', '新洲路218号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.235612', '1', '2024-03-05 09:05:14.235612', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新洲路218号', '467', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_468', '1', '南湖大道高浪路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.239316', '1', '2024-03-05 09:05:14.239316', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南湖大道高浪路口', '468', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_469', '1', '江海南路往东亭方向匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.242923', '1', '2024-03-05 09:05:14.242923', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海南路往东亭方向匝道', '469', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_470', '1', '上品花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.246746', '1', '2024-03-05 09:05:14.246746', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上品花园', '470', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_471', '1', '新华路与金城路交界口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.250433', '1', '2024-03-05 09:05:14.250433', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路与金城路交界口', '471', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_472', '1', '上马墩三村167-179号一楼', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.254083', '1', '2024-03-05 09:05:14.254083', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上马墩三村167-179号一楼', '472', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_473', '1', '人民医院园区内部道路(金匮', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.25782', '1', '2024-03-05 09:05:14.25782', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民医院园区内部道路(金匮', '473', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_474', '1', '坊和路和东安路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.261497', '1', '2024-03-05 09:05:14.261497', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊和路和东安路交叉路口', '474', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_475', '1', '纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.26526', '1', '2024-03-05 09:05:14.26526', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道', '475', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_476', '1', '纺城大道和新月路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.269034', '1', '2024-03-05 09:05:14.269034', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和新月路交叉口', '476', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_477', '1', '坊城大道,新世界国际旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.272715', '1', '2024-03-05 09:05:14.272715', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊城大道,新世界国际旁', '477', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_478', '1', '锡山大道和纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.27668', '1', '2024-03-05 09:05:14.27668', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡山大道和纺城大道', '478', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_479', '1', '梅村高级中学门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.280279', '1', '2024-03-05 09:05:14.280279', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村高级中学门口', '479', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_480', '1', '桃溪路,火炬村附近桥洞内', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.283973', '1', '2024-03-05 09:05:14.283973', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '桃溪路,火炬村附近桥洞内', '480', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_481', '1', '江海南路往学前东路方向匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.287708', '1', '2024-03-05 09:05:14.287708', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海南路往学前东路方向匝道', '481', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_482', '1', '梅荆花园一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.291393', '1', '2024-03-05 09:05:14.291393', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅荆花园一期', '482', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_483', '1', '新韵北路和新锦路中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.295024', '1', '2024-03-05 09:05:14.295024', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新韵北路和新锦路中间', '483', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_484', '1', '锡澄路赛格电子市场对面慢车道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.29903', '1', '2024-03-05 09:05:14.29903', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡澄路赛格电子市场对面慢车道', '484', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_485', '1', '新华路,金城路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.303253', '1', '2024-03-05 09:05:14.303253', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路,金城路', '485', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_486', '1', '梅村,新南中路,新蠡路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.308069', '1', '2024-03-05 09:05:14.308069', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,新南中路,新蠡路', '486', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_487', '1', '南新二路,驰润公司门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.311681', '1', '2024-03-05 09:05:14.311681', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南新二路,驰润公司门口', '487', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_488', '1', '南新一路5号6号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.315242', '1', '2024-03-05 09:05:14.315242', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南新一路5号6号', '488', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_489', '1', '长江南路空港经济开发区门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.318913', '1', '2024-03-05 09:05:14.318913', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江南路空港经济开发区门口', '489', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_490', '1', '景云立交', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.322552', '1', '2024-03-05 09:05:14.322552', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '景云立交', '490', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_491', '1', '盛岸西路苏嘉路口(积水都在苏嘉路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.326532', '1', '2024-03-05 09:05:14.326532', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路苏嘉路口(积水都在苏嘉路)', '491', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_492', '1', '江海路(大唐御园)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.33035', '1', '2024-03-05 09:05:14.33035', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海路(大唐御园)', '492', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_493', '1', '胜丰路与江海西路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.33418', '1', '2024-03-05 09:05:14.33418', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胜丰路与江海西路交叉路口', '493', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_597', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.900698', '1', '2024-03-05 09:05:18.900698', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:破损,落水管脱落', '597', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_598', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.904844', '1', '2024-03-05 09:05:18.904844', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏位置:瓜市桥由东向西,桥面道板砖破损一块,瓜市桥由东向西,桥面道板砖破损一块', '598', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10148', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.908698', '1', '2024-03-05 09:05:18.908698', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:栏杆底座装饰板,松动破损', '10148', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_599', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.91289', '1', '2024-03-05 09:05:18.91289', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏位置:阅溪桥西往东,阅溪桥由西向东,2#伸缩缝右侧,侧边混凝土破损剥落两块', '599', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10149', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.916881', '1', '2024-03-05 09:05:18.916881', '1', 1, '320213', NULL, '1', '0101000020B011000046CFE6D417538341685AD49B18B24A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:凤翔路主线上跨桥由东向西13至12#墩柱中间,落水管脱落', '10149', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10150', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.920904', '1', '2024-03-05 09:05:18.920904', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏程度:中,道板砖开裂破损约20块', '10150', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10151', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.925231', '1', '2024-03-05 09:05:18.925231', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '上部结构,局部轻微', '10151', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_893', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.929063', '1', '2024-03-05 09:05:18.929063', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '人行道,局部轻微', '893', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_405', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.933433', '1', '2024-03-05 09:05:18.933433', '1', 1, '320213', NULL, '1', '0101000020B01100009F707D009553834128662F8501A44A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:轻,道板缺失', '405', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10152', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.93723', '1', '2024-03-05 09:05:18.93723', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道处,道板砖缺失两块', '10152', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10153', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.94116', '1', '2024-03-05 09:05:18.94116', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏位置:蠡湖大桥北向南,桥面砖破损一块', '10153', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10154', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.945031', '1', '2024-03-05 09:05:18.945031', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:重,落水管脱落', '10154', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10155', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.949031', '1', '2024-03-05 09:05:18.949031', '1', 1, '320213', NULL, '1', '0101000020B0110000DA373EA330538341BA92E45511AB4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏位置:进城方向,大理石破损', '10155', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10156', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.953019', '1', '2024-03-05 09:05:18.953019', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝垃圾堵塞', '10156', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10157', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.958116', '1', '2024-03-05 09:05:18.958116', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '10157', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_952', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.962381', '1', '2024-03-05 09:05:18.962381', '1', 1, '320213', NULL, '1', '0101000020B0110000DA373EA330538341BA92E45511AB4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏位置:进城方向,大理石破损', '952', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_494', '1', '石门路山北医院', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.337906', '1', '2024-03-05 09:05:14.337906', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '石门路山北医院', '494', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_495', '1', 'LD411', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.341662', '1', '2024-03-05 09:05:14.341662', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, 'LD411', '495', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_953', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.966604', '1', '2024-03-05 09:05:18.966604', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏程度:中,防撞墙破损', '953', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_496', '1', 'LD246', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.345293', '1', '2024-03-05 09:05:14.345293', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, 'LD246', '496', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_497', '1', '新光路,锅炉家舍3号(旺庄)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.349387', '1', '2024-03-05 09:05:14.349387', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光路,锅炉家舍3号(旺庄)', '497', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_954', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.970557', '1', '2024-03-05 09:05:18.970557', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏程度:轻,桥面砖破碎翘起10块', '954', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_955', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.974501', '1', '2024-03-05 09:05:18.974501', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏程度:中,道板砖破损1块', '955', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_956', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.978445', '1', '2024-03-05 09:05:18.978445', '1', 1, '320213', NULL, '1', '0101000020B011000086E7DEBBE85283410BC781B778B14A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏程度:重,道板砖缺失4块', '956', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_957', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.982362', '1', '2024-03-05 09:05:18.982362', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏位置:钱荣路高架由北向南LD046处,沥青网裂,约5个平方', '957', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_605', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.98638', '1', '2024-03-05 09:05:18.98638', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏位置:东南侧推坡道大理石砖松动三块,缺损一块(30cm*30cm),局部轻微', '605', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_606', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.990359', '1', '2024-03-05 09:05:18.990359', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '606', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_607', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.994387', '1', '2024-03-05 09:05:18.994387', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '607', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_608', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:18.998254', '1', '2024-03-05 09:05:18.998254', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '608', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_609', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.003092', '1', '2024-03-05 09:05:19.003092', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏位置:全桥两侧人行道道板砖缺损六块(每块19cm*19cm),局部轻微', '609', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_610', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.007247', '1', '2024-03-05 09:05:19.007247', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE129B3155383416130B8DCD9A74A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,局部轻微', '610', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_611', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.011197', '1', '2024-03-05 09:05:19.011197', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,局部轻微', '611', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_612', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.015169', '1', '2024-03-05 09:05:19.015169', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '人行道,局部轻微', '612', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_613', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.019119', '1', '2024-03-05 09:05:19.019119', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏程度:中,沥青车辙,损伤面积约五个平方', '613', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_498', '1', '锡士路,东鼎家园西门门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.353113', '1', '2024-03-05 09:05:14.353113', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡士路,东鼎家园西门门口', '498', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_499', '1', '建筑路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.357065', '1', '2024-03-05 09:05:14.357065', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '建筑路', '499', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_500', '1', '近高速入口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.360962', '1', '2024-03-05 09:05:14.360962', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '近高速入口处', '500', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_501', '1', '新友北路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.364831', '1', '2024-03-05 09:05:14.364831', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新友北路', '501', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_502', '1', '金城路春华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.368778', '1', '2024-03-05 09:05:14.368778', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城路春华路', '502', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_503', '1', '在梅村工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.372709', '1', '2024-03-05 09:05:14.372709', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '在梅村工业园', '503', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_504', '1', '苏嘉路和盛德路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.376408', '1', '2024-03-05 09:05:14.376408', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '苏嘉路和盛德路', '504', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_505', '1', '江海路(万荣路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.380179', '1', '2024-03-05 09:05:14.380179', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海路(万荣路)', '505', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_506', '1', '鸿声、鸿西,马更上40号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.384035', '1', '2024-03-05 09:05:14.384035', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿声、鸿西,马更上40号', '506', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_507', '1', '综合保税区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.38785', '1', '2024-03-05 09:05:14.38785', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '综合保税区', '507', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_508', '1', '坊前朝阳新村五期1号到11号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.391489', '1', '2024-03-05 09:05:14.391489', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '坊前朝阳新村五期1号到11号', '508', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_509', '1', '滨湖区山水东路和楝成路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.39567', '1', '2024-03-05 09:05:14.39567', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '滨湖区山水东路和楝成路交叉口', '509', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_510', '1', '奕淳公寓一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.401407', '1', '2024-03-05 09:05:14.401407', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '奕淳公寓一期', '510', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_511', '1', '江溪街道朝阳新村一区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.40529', '1', '2024-03-05 09:05:14.40529', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道朝阳新村一区', '511', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_512', '1', '春潮花园3期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.409283', '1', '2024-03-05 09:05:14.409283', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春潮花园3期', '512', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_513', '1', '春潮花园一区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.413009', '1', '2024-03-05 09:05:14.413009', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春潮花园一区', '513', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_514', '1', '安镇,桥头巷32号(安镇)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.41703', '1', '2024-03-05 09:05:14.41703', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,桥头巷32号(安镇)', '514', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_515', '1', '联福路,锡沪路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.420741', '1', '2024-03-05 09:05:14.420741', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联福路,锡沪路', '515', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_516', '1', '钱桥街道站头新村二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.424418', '1', '2024-03-05 09:05:14.424418', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥街道站头新村二期', '516', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_517', '1', '钱荣路高架地面道路(乐多花园)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.428245', '1', '2024-03-05 09:05:14.428245', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱荣路高架地面道路(乐多花园)', '517', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_518', '1', '安镇街道安中弄', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.432062', '1', '2024-03-05 09:05:14.432062', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道安中弄', '518', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_519', '1', '金城高架和团结路的交汇处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.436193', '1', '2024-03-05 09:05:14.436193', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城高架和团结路的交汇处', '519', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_520', '1', '上马墩二村', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.440078', '1', '2024-03-05 09:05:14.440078', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上马墩二村', '520', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_521', '1', '新世界和五洲国际附近的坊城大道、坊河路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.443969', '1', '2024-03-05 09:05:14.443969', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新世界和五洲国际附近的坊城大道、坊河路', '521', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_522', '1', '纺和路、纺城大道、金城东路路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.447891', '1', '2024-03-05 09:05:14.447891', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺和路、纺城大道、金城东路路段', '522', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_523', '1', '锡泰路、新兴路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.451852', '1', '2024-03-05 09:05:14.451852', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡泰路、新兴路', '523', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_524', '1', '梅村金城东路507号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.4559', '1', '2024-03-05 09:05:14.4559', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村金城东路507号', '524', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_525', '1', '融华路江华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.459674', '1', '2024-03-05 09:05:14.459674', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '融华路江华路', '525', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_526', '1', '惠暨大道与堰联路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.463397', '1', '2024-03-05 09:05:14.463397', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠暨大道与堰联路交叉口', '526', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_527', '1', '县前东街老崇安区政府、T12商城段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.467227', '1', '2024-03-05 09:05:14.467227', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '县前东街老崇安区政府、T12商城段', '527', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_528', '1', '青祁路(青莲路口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.471203', '1', '2024-03-05 09:05:14.471203', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青祁路(青莲路口)', '528', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_529', '1', '洛社工业园洛圻路101号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.474922', '1', '2024-03-05 09:05:14.474922', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社工业园洛圻路101号', '529', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_530', '1', '新泰路(无锡科技职业学校西门段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.478727', '1', '2024-03-05 09:05:14.478727', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新泰路(无锡科技职业学校西门段)', '530', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_531', '1', '惠勤路火车站地下通道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.482512', '1', '2024-03-05 09:05:14.482512', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠勤路火车站地下通道', '531', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_532', '1', '红旗花园B区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.486476', '1', '2024-03-05 09:05:14.486476', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '红旗花园B区', '532', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_533', '1', '李家里90号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.490354', '1', '2024-03-05 09:05:14.490354', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '李家里90号', '533', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_534', '1', '东亭街道蓝光五彩城1期东门', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.494087', '1', '2024-03-05 09:05:14.494087', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道蓝光五彩城1期东门', '534', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_535', '1', '阳光100小区门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.49781', '1', '2024-03-05 09:05:14.49781', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '阳光100小区门口', '535', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_536', '1', '青祁路湖滨幼儿园处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.501743', '1', '2024-03-05 09:05:14.501743', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '青祁路湖滨幼儿园处', '536', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_537', '1', '钱荣路梅园立交(西北匝道)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.505431', '1', '2024-03-05 09:05:14.505431', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱荣路梅园立交(西北匝道)', '537', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_538', '1', '通惠西路(惠山小学)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.509314', '1', '2024-03-05 09:05:14.509314', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通惠西路(惠山小学)', '538', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_539', '1', '旺庄街道李夹里', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.513097', '1', '2024-03-05 09:05:14.513097', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄街道李夹里', '539', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_540', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.516855', '1', '2024-03-05 09:05:14.516855', '1', 1, '320299', NULL, '1', '0103000020B011000001000000050000004716150F91538341A4BF723BA49A4A41504D377195538341BCE9A36D859A4A4110CD712B92538341099B88C74A9A4A417565C8B58D5383415F891FCF6D9A4A414716150F91538341A4BF723BA49A4A41', NULL, NULL, NULL, NULL, '道路积水', '540', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_541', '1', '金城东路(景云立交)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.521104', '1', '2024-03-05 09:05:14.521104', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城东路(景云立交)', '541', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_542', '1', '安镇查桥的先锋中路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.525038', '1', '2024-03-05 09:05:14.525038', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇查桥的先锋中路', '542', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_543', '1', '新地假日广场旁石街小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.528925', '1', '2024-03-05 09:05:14.528925', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新地假日广场旁石街小区', '543', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_544', '1', '新光村上浦巷', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.533669', '1', '2024-03-05 09:05:14.533669', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光村上浦巷', '544', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_545', '1', '梅村街道上品花园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.537531', '1', '2024-03-05 09:05:14.537531', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道上品花园', '545', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_546', '1', '泰伯花园三期16号车库内', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.541669', '1', '2024-03-05 09:05:14.541669', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '泰伯花园三期16号车库内', '546', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_547', '1', '新丰苑二期4号5号6号车库坊前', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.545407', '1', '2024-03-05 09:05:14.545407', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新丰苑二期4号5号6号车库坊前', '547', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_548', '1', '友谊中路卜蜂莲花马路对面', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.549166', '1', '2024-03-05 09:05:14.549166', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊中路卜蜂莲花马路对面', '548', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_549', '1', '安镇,锦瑞旺府98号别墅', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.552897', '1', '2024-03-05 09:05:14.552897', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,锦瑞旺府98号别墅', '549', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_550', '1', '纺城大道锡沪路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.557737', '1', '2024-03-05 09:05:14.557737', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道锡沪路', '550', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_551', '1', '华夏名都门口和泽路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.561742', '1', '2024-03-05 09:05:14.561742', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '华夏名都门口和泽路段', '551', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_552', '1', '安镇,东盛路,台铃电动车厂旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.565933', '1', '2024-03-05 09:05:14.565933', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,东盛路,台铃电动车厂旁', '552', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_553', '1', '张缪舍元亨小区对面', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.569629', '1', '2024-03-05 09:05:14.569629', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '张缪舍元亨小区对面', '553', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_554', '1', '运河东路交通管理处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.573633', '1', '2024-03-05 09:05:14.573633', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河东路交通管理处', '554', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_555', '1', '梅村,群兴产业园路边,群兴路上', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.57748', '1', '2024-03-05 09:05:14.57748', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,群兴产业园路边,群兴路上', '555', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_556', '1', '飞凤路跟鸿山南路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.581257', '1', '2024-03-05 09:05:14.581257', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '飞凤路跟鸿山南路路口', '556', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_557', '1', '梅村新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.58486', '1', '2024-03-05 09:05:14.58486', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村新锦路', '557', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_558', '1', '鹅湖镇甘露月溪苑50号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.589354', '1', '2024-03-05 09:05:14.589354', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鹅湖镇甘露月溪苑50号', '558', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_559', '1', '长泰国际社区别墅区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.593199', '1', '2024-03-05 09:05:14.593199', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长泰国际社区别墅区', '559', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_560', '1', '胶阳路联广路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.596963', '1', '2024-03-05 09:05:14.596963', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胶阳路联广路', '560', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_561', '1', '联福路安泰一路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.600568', '1', '2024-03-05 09:05:14.600568', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联福路安泰一路', '561', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_562', '1', '友谊路新明路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.604329', '1', '2024-03-05 09:05:14.604329', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊路新明路', '562', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_563', '1', '政府北门府北支路路边', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.60799', '1', '2024-03-05 09:05:14.60799', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '政府北门府北支路路边', '563', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_564', '1', '文瑞路,景瑞望府34号旁(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.6122', '1', '2024-03-05 09:05:14.6122', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '文瑞路,景瑞望府34号旁(安镇', '564', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_565', '1', '通惠西路(惠山小学)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.615957', '1', '2024-03-05 09:05:14.615957', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通惠西路(惠山小学)', '565', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_566', '1', '春晖中路3号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.620651', '1', '2024-03-05 09:05:14.620651', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春晖中路3号', '566', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_567', '1', '羊尖,车站新村32号民房(羊尖', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.624832', '1', '2024-03-05 09:05:14.624832', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,车站新村32号民房(羊尖', '567', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_568', '1', '羊尖,后鱼池15号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.628607', '1', '2024-03-05 09:05:14.628607', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,后鱼池15号', '568', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_569', '1', '羊尖,锡沪路,建筑公司商品房一楼(羊尖', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.632356', '1', '2024-03-05 09:05:14.632356', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,锡沪路,建筑公司商品房一楼(羊尖', '569', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_570', '1', '羊尖高级中学后面', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.636149', '1', '2024-03-05 09:05:14.636149', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖高级中学后面', '570', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_571', '1', '云竹路,华润江南府旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.639838', '1', '2024-03-05 09:05:14.639838', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '云竹路,华润江南府旁', '571', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_572', '1', '厚桥街道红旗压力容器有限公司', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.643927', '1', '2024-03-05 09:05:14.643927', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '厚桥街道红旗压力容器有限公司', '572', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_573', '1', '东翔路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.647657', '1', '2024-03-05 09:05:14.647657', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东翔路', '573', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_574', '1', '农石路和石新路交叉口东侧', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.651366', '1', '2024-03-05 09:05:14.651366', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '农石路和石新路交叉口东侧', '574', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_575', '1', '团结北路(万安大桥以北)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.655245', '1', '2024-03-05 09:05:14.655245', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '团结北路(万安大桥以北)', '575', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_576', '1', '东港镇锡港东路22号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.658901', '1', '2024-03-05 09:05:14.658901', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东港镇锡港东路22号', '576', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_577', '1', '学前东路(华东商贸城)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.662708', '1', '2024-03-05 09:05:14.662708', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '学前东路(华东商贸城)', '577', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_578', '1', '广石家园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.666389', '1', '2024-03-05 09:05:14.666389', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广石家园', '578', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_579', '1', '锡北镇泾华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.670012', '1', '2024-03-05 09:05:14.670012', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北镇泾华路', '579', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_580', '1', '锡东大道华夏世纪锦园小区西面', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.673649', '1', '2024-03-05 09:05:14.673649', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡东大道华夏世纪锦园小区西面', '580', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_581', '1', '锡北镇寨门村张巷', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.677413', '1', '2024-03-05 09:05:14.677413', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡北镇寨门村张巷', '581', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_582', '1', '鹅湖镇彩桥村范更上4号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.681402', '1', '2024-03-05 09:05:14.681402', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鹅湖镇彩桥村范更上4号', '582', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_583', '1', '鹅湖镇三新村李家桥15号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.685522', '1', '2024-03-05 09:05:14.685522', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鹅湖镇三新村李家桥15号', '583', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_584', '1', '鹅湖镇三新村荡滩上', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.689409', '1', '2024-03-05 09:05:14.689409', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鹅湖镇三新村荡滩上', '584', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_585', '1', '友谊中路易买得超市路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.693322', '1', '2024-03-05 09:05:14.693322', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊中路易买得超市路段', '585', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_586', '1', '旺庄街道群星社区大巷上113号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.697186', '1', '2024-03-05 09:05:14.697186', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄街道群星社区大巷上113号', '586', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_587', '1', '新光村82号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.700931', '1', '2024-03-05 09:05:14.700931', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新光村82号', '587', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_588', '1', '锡新路和新光路的交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.705055', '1', '2024-03-05 09:05:14.705055', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡新路和新光路的交叉口', '588', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_589', '1', '锡达路,靠近新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.708738', '1', '2024-03-05 09:05:14.708738', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡达路,靠近新锦路', '589', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_590', '1', '石门路(惠东里小区在建工地出入
- 口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.712472', '1', '2024-03-05 09:05:14.712472', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '石门路(惠东里小区在建工地出入
- 口)', '590', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_591', '1', '梅村街道锡群路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.716149', '1', '2024-03-05 09:05:14.716149', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村街道锡群路', '591', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_592', '1', '上品花园前后(新友路、锡贤路和新韵路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.719893', '1', '2024-03-05 09:05:14.719893', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上品花园前后(新友路、锡贤路和新韵路)', '592', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_593', '1', '西漳,明发国际新城119-16和119-13', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.724651', '1', '2024-03-05 09:05:14.724651', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西漳,明发国际新城119-16和119-13', '593', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_594', '1', '锡山大道,大成路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.728337', '1', '2024-03-05 09:05:14.728337', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡山大道,大成路路口', '594', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_595', '1', '运河西路旁边', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.732522', '1', '2024-03-05 09:05:14.732522', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河西路旁边', '595', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_596', '1', '高浪路高架泰伯大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.736342', '1', '2024-03-05 09:05:14.736342', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高浪路高架泰伯大道', '596', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_597', '1', '梅村,群兴路7号,光大有限公司旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.740044', '1', '2024-03-05 09:05:14.740044', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村,群兴路7号,光大有限公司旁', '597', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_598', '1', '锡达路569号江溪工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.743898', '1', '2024-03-05 09:05:14.743898', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡达路569号江溪工业园', '598', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_599', '1', '查桥、东亭跟锡虞路道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.74766', '1', '2024-03-05 09:05:14.74766', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥、东亭跟锡虞路道路', '599', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_600', '1', '查桥镇白丹山村唐更巷', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.75181', '1', '2024-03-05 09:05:14.75181', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥镇白丹山村唐更巷', '600', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_601', '1', '小三里桥', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.755823', '1', '2024-03-05 09:05:14.755823', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '小三里桥', '601', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_602', '1', '人民东路南匝道(唐巷)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.759694', '1', '2024-03-05 09:05:14.759694', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民东路南匝道(唐巷)', '602', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_603', '1', '查桥镇香港街', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.763353', '1', '2024-03-05 09:05:14.763353', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥镇香港街', '603', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_604', '1', '东港镇陈巷新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.766984', '1', '2024-03-05 09:05:14.766984', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东港镇陈巷新村', '604', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_605', '1', '东湖塘阳光西路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.770648', '1', '2024-03-05 09:05:14.770648', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东湖塘阳光西路', '605', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_606', '1', '东盛路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.776141', '1', '2024-03-05 09:05:14.776141', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东盛路段', '606', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_607', '1', '二泉东路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.779847', '1', '2024-03-05 09:05:14.779847', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉东路', '607', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_608', '1', '二泉东路和坊达路交叉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.78369', '1', '2024-03-05 09:05:14.78369', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉东路和坊达路交叉路口', '608', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_609', '1', '和祥路和盛泉路交叉口积', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.787457', '1', '2024-03-05 09:05:14.787457', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和祥路和盛泉路交叉口积', '609', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_610', '1', '华夏星辰', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.791398', '1', '2024-03-05 09:05:14.791398', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '华夏星辰', '610', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_611', '1', '建发玖里湾', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.795451', '1', '2024-03-05 09:05:14.795451', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '建发玖里湾', '611', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_612', '1', '胶阳路和联福路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.799133', '1', '2024-03-05 09:05:14.799133', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胶阳路和联福路', '612', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_613', '1', '民丰一期与二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.804074', '1', '2024-03-05 09:05:14.804074', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '民丰一期与二期', '613', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_614', '1', '人民东路广瑞路交口东北处', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.808753', '1', '2024-03-05 09:05:14.808753', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '人民东路广瑞路交口东北处', '614', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_615', '1', '和泽佳苑16号别墅(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.812573', '1', '2024-03-05 09:05:14.812573', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和泽佳苑16号别墅(安镇', '615', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_616', '1', '安镇,锡沪路,迎宾楼隔壁,粮管所(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.816597', '1', '2024-03-05 09:05:14.816597', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,锡沪路,迎宾楼隔壁,粮管所(安镇', '616', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_617', '1', '锡虞路和锡东路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.820351', '1', '2024-03-05 09:05:14.820351', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡虞路和锡东路', '617', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_618', '1', '锡虞路与春笋北路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.824434', '1', '2024-03-05 09:05:14.824434', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡虞路与春笋北路', '618', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_619', '1', '先锋路(靠近汽车城)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.828593', '1', '2024-03-05 09:05:14.828593', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '先锋路(靠近汽车城)', '619', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_620', '1', '甘露,松芝村,陆更上81号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.832507', '1', '2024-03-05 09:05:14.832507', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '甘露,松芝村,陆更上81号', '620', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_621', '1', '新明路和友谊中路交汇路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.83676', '1', '2024-03-05 09:05:14.83676', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新明路和友谊中路交汇路口', '621', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_622', '1', '新明中路22号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.840572', '1', '2024-03-05 09:05:14.840572', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新明中路22号', '622', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_623', '1', '锦瑞望府105号(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.844201', '1', '2024-03-05 09:05:14.844201', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锦瑞望府105号(安镇', '623', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_624', '1', '安镇街道翡翠文化', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.848001', '1', '2024-03-05 09:05:14.848001', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道翡翠文化', '624', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_625', '1', '盛岸西路苏嘉路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.851755', '1', '2024-03-05 09:05:14.851755', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路苏嘉路口', '625', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_626', '1', '高泾社区徐象桥183号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.855672', '1', '2024-03-05 09:05:14.855672', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高泾社区徐象桥183号', '626', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_627', '1', '安镇街道润德里', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.859448', '1', '2024-03-05 09:05:14.859448', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道润德里', '627', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_628', '1', '安镇街道鑫安一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.863038', '1', '2024-03-05 09:05:14.863038', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道鑫安一期', '628', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_629', '1', '柏庄一村', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.867017', '1', '2024-03-05 09:05:14.867017', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '柏庄一村', '629', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_630', '1', '查桥嘉荫苑', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.870678', '1', '2024-03-05 09:05:14.870678', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥嘉荫苑', '630', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_631', '1', '东亭柏庄一村91号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.874455', '1', '2024-03-05 09:05:14.874455', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭柏庄一村91号', '631', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_632', '1', '东亭街道聚江苑2号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.878566', '1', '2024-03-05 09:05:14.878566', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道聚江苑2号', '632', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_633', '1', '东安云竹路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.882534', '1', '2024-03-05 09:05:14.882534', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东安云竹路', '633', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_634', '1', '蓝光雍锦园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.886505', '1', '2024-03-05 09:05:14.886505', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蓝光雍锦园', '634', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_635', '1', '蓝光雍锦园', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.890421', '1', '2024-03-05 09:05:14.890421', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蓝光雍锦园', '635', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_636', '1', '锡沪东路160号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.894273', '1', '2024-03-05 09:05:14.894273', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡沪东路160号', '636', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_637', '1', '解放东路保利广场段', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.898352', '1', '2024-03-05 09:05:14.898352', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '解放东路保利广场段', '637', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_638', '1', '运河西路金匮桥下', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.9019', '1', '2024-03-05 09:05:14.9019', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河西路金匮桥下', '638', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_639', '1', '云林苑南区16号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.905951', '1', '2024-03-05 09:05:14.905951', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '云林苑南区16号', '639', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_640', '1', '长泰国际南A区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.909695', '1', '2024-03-05 09:05:14.909695', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长泰国际南A区', '640', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_641', '1', '东亭街道新藤村401号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.913455', '1', '2024-03-05 09:05:14.913455', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道新藤村401号', '641', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_642', '1', '安国路276号,鑫安一期南门,鑫安旅馆,(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.917599', '1', '2024-03-05 09:05:14.917599', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安国路276号,鑫安一期南门,鑫安旅馆,(安镇', '642', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_643', '1', '联谦路,安镇污水厂旁边河里', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.921809', '1', '2024-03-05 09:05:14.921809', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联谦路,安镇污水厂旁边河里', '643', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_644', '1', '联清路,安泰二路,新光配件厂(厚桥', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.925642', '1', '2024-03-05 09:05:14.925642', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联清路,安泰二路,新光配件厂(厚桥', '644', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_645', '1', '羊尖前街,陈巷排涝站(羊尖', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.929755', '1', '2024-03-05 09:05:14.929755', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖前街,陈巷排涝站(羊尖', '645', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_646', '1', '尤巷新村110号(东亭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.93413', '1', '2024-03-05 09:05:14.93413', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '尤巷新村110号(东亭)', '646', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_647', '1', '查桥镇石埭桥村河北巷1号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.938404', '1', '2024-03-05 09:05:14.938404', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥镇石埭桥村河北巷1号', '647', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_648', '1', '东亭街道杨树村', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.942582', '1', '2024-03-05 09:05:14.942582', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道杨树村', '648', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_649', '1', '金石东路(金瑞家园)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.946991', '1', '2024-03-05 09:05:14.946991', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金石东路(金瑞家园)', '649', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_650', '1', '梁溪路万达广场', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.950803', '1', '2024-03-05 09:05:14.950803', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梁溪路万达广场', '650', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_651', '1', '甘虞路6号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.955824', '1', '2024-03-05 09:05:14.955824', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '甘虞路6号', '651', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_652', '1', '高邓路51号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.960093', '1', '2024-03-05 09:05:14.960093', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高邓路51号', '652', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_653', '1', '厚桥街道辞界桥19号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.963951', '1', '2024-03-05 09:05:14.963951', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '厚桥街道辞界桥19号', '653', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_654', '1', '金辉天奕名著一期', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.968385', '1', '2024-03-05 09:05:14.968385', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金辉天奕名著一期', '654', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_655', '1', '羊尖镇东街新村26号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.972045', '1', '2024-03-05 09:05:14.972045', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇东街新村26号', '655', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_656', '1', '华夏南路东华新村小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.97573', '1', '2024-03-05 09:05:14.97573', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '华夏南路东华新村小区', '656', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_657', '1', '羊勤路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.979494', '1', '2024-03-05 09:05:14.979494', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊勤路', '657', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_658', '1', '羊尖镇锡沪路104号', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.98341', '1', '2024-03-05 09:05:14.98341', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇锡沪路104号', '658', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_659', '1', '东北塘承塘路', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.98732', '1', '2024-03-05 09:05:14.98732', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东北塘承塘路', '659', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_660', '1', '九里河地铁口附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.99135', '1', '2024-03-05 09:05:14.99135', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '九里河地铁口附近', '660', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_614', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.023084', '1', '2024-03-05 09:05:19.023084', '1', 1, '320213', NULL, '1', '0101000020B0110000E49387E3FD528341FA5F599BACAE4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,道板砖开裂破损12块', '614', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_615', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.027841', '1', '2024-03-05 09:05:19.027841', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约12个平方', '615', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_616', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.032156', '1', '2024-03-05 09:05:19.032156', '1', 1, '320213', NULL, '1', '0101000020B011000046BAA682705383410CA4523477B04A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏位置:瞻江立交(江海路高架)由北向南8#伸缩缝处,伸缩缝锚固区破损(第二车道)', '616', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_617', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.036067', '1', '2024-03-05 09:05:19.036067', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏位置:瞻江立交WN匝道由西往南5至7#伸缩缝处,防撞墙被剐蹭,损伤面积约15个平方', '617', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_618', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.039723', '1', '2024-03-05 09:05:19.039723', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,桥面砖破损一块松动四块共二处', '618', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_620', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.043756', '1', '2024-03-05 09:05:19.043756', '1', 1, '320213', NULL, '1', '0101000020B0110000655D1CB787538341B60303A4F8B44A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:重,沥青坑塘(边车道)', '620', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_621', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.047879', '1', '2024-03-05 09:05:19.047879', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '621', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_622', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.051596', '1', '2024-03-05 09:05:19.051596', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏位置:两侧人行道,全桥两侧人行道道板砖缺损六块,松动两块', '622', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_623', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.05559', '1', '2024-03-05 09:05:19.05559', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,由北往南人行道道板砖缺损一块', '623', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_624', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.059338', '1', '2024-03-05 09:05:19.059338', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏类型:破损,侧石破损', '624', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_625', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.06306', '1', '2024-03-05 09:05:19.06306', '1', 1, '320213', NULL, '1', '0101000020B01100006124B48DAE53834125E6CB7F5CA24A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,道板,缺损松动', '625', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_626', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.067347', '1', '2024-03-05 09:05:19.067347', '1', 1, '320213', NULL, '1', '0101000020B0110000BF4D7FEC1D55834135F2076F89AD4A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏程度:轻,伸缩缝护板变形', '626', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_212', '5', '支座', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.071267', '1', '2024-03-05 09:05:19.071267', '1', 1, '320213', NULL, '1', '0101000020B01100008B5E4645C4528341E4F08264A9A54A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,生锈', '212', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_661', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.995096', '1', '2024-03-05 09:05:14.995096', '1', 1, '320299', NULL, '1', '0103000020B01100000100000005000000480E3558895383410C9CFD3E76954A41001A68508D538341346FACFC90954A41494BDFBA9053834144071FF6FB944A41C31D3E828C538341D4431655E4944A41480E3558895383410C9CFD3E76954A41', NULL, NULL, NULL, NULL, '道路积水', '661', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_662', '1', '震泽路(观顺道交叉口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:14.999468', '1', '2024-03-05 09:05:14.999468', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '震泽路(观顺道交叉口)', '662', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_663', '1', '县前西街男霸服饰店门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.003356', '1', '2024-03-05 09:05:15.003356', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '县前西街男霸服饰店门口', '663', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_664', '1', '新明中路4号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.007443', '1', '2024-03-05 09:05:15.007443', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新明中路4号', '664', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_665', '1', '云林街道友谊中路易买得超市路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.01138', '1', '2024-03-05 09:05:15.01138', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '云林街道友谊中路易买得超市路段', '665', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_666', '1', '竹苑新村南区590号-10,车库内', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.015068', '1', '2024-03-05 09:05:15.015068', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '竹苑新村南区590号-10,车库内', '666', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10159', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.075569', '1', '2024-03-05 09:05:19.075569', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '①桥面铺装 1 处坑槽,面积为 0.01m2。\n②全桥排水系统通畅,未见异常。\n③护栏存在防撞墙 1 处锈胀露筋,面积为 0.50m2。\n④附属设施全桥电力箱锈蚀、电箱盖缺失。\n⑤桥头平顺未见异常。\n⑥伸缩缝 3 处伸缩缝橡胶止水带通长破损。', '10159', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10160', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.079753', '1', '2024-03-05 09:05:19.079753', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏类型:破损,局部轻微', '10160', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10161', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.083572', '1', '2024-03-05 09:05:19.083572', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,损伤长度约200CM', '10161', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10162', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.087785', '1', '2024-03-05 09:05:19.087785', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10162', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10163', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.091368', '1', '2024-03-05 09:05:19.091368', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '10163', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_958', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.095253', '1', '2024-03-05 09:05:19.095253', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏类型:其他,沥青网裂,损伤面积约两个平方', '958', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10173', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.098927', '1', '2024-03-05 09:05:19.098927', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,道板松动破损', '10173', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_959', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.102892', '1', '2024-03-05 09:05:19.102892', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏位置:钱荣路高架由北向南LD144处,沥青坑塘,损伤面积约两个平方', '959', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_960', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.106803', '1', '2024-03-05 09:05:19.106803', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭约1个平方', '960', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_627', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.110532', '1', '2024-03-05 09:05:19.110532', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖破损一块', '627', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_628', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.114106', '1', '2024-03-05 09:05:19.114106', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏位置:锡虞立交由西向东LD015处,防撞墙被剐蹭,损伤面积约一个平方', '628', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_629', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.118248', '1', '2024-03-05 09:05:19.118248', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏类型:破损,落水管破损', '629', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_630', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.121842', '1', '2024-03-05 09:05:19.121842', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北LD360处,防撞墙被剐蹭,损伤面积约2个平方', '630', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_631', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.12538', '1', '2024-03-05 09:05:19.12538', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾', '631', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_632', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.129291', '1', '2024-03-05 09:05:19.129291', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有垃圾', '632', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_633', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.133107', '1', '2024-03-05 09:05:19.133107', '1', 1, '320213', NULL, '1', '0101000020B011000006642F3C265383419EEC119C64A94A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏程度:轻,靠背破损', '633', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_634', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.136945', '1', '2024-03-05 09:05:19.136945', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺损两块(每块19cm*19cm),局部轻微', '634', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_635', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.140684', '1', '2024-03-05 09:05:19.140684', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:其他,东风桥由西向东,沥青路面一处拥抱', '635', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_636', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.144511', '1', '2024-03-05 09:05:19.144511', '1', 1, '320213', NULL, '1', '0101000020B0110000EDC1DDE7D6528341942D59AB8BB34A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏程度:中,环氧覆层大面积破损,约为10个平方', '636', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_637', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.14836', '1', '2024-03-05 09:05:19.14836', '1', 1, '320213', NULL, '1', '0101000020B01100006ADA3E8F47538341DE84B40C2AA74A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:其他,锈蚀污垢', '637', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_638', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.15209', '1', '2024-03-05 09:05:19.15209', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏位置:博学桥北向南,桥面砖缺失一块', '638', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_639', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.15607', '1', '2024-03-05 09:05:19.15607', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏位置:唐祥桥由南向北人行道处,道板砖开裂破损约15块', '639', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_640', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.160937', '1', '2024-03-05 09:05:19.160937', '1', 1, '320213', NULL, '1', '0101000020B0110000F95D91527153834173E1B23834A24A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:破损,沥青裂缝,长度约3m', '640', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_641', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.165001', '1', '2024-03-05 09:05:19.165001', '1', 1, '320213', NULL, '1', '0101000020B0110000F95D91527153834173E1B23834A24A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏程度:中,沥青裂缝,长度约3m', '641', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_645', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.169189', '1', '2024-03-05 09:05:19.169189', '1', 1, '320213', NULL, '1', '0101000020B01100007A107B4341538341C19CA0EBE3BB4A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:中,伸缩装置防护钢板翘起2处', '645', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_646', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.172998', '1', '2024-03-05 09:05:19.172998', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '646', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_647', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.176948', '1', '2024-03-05 09:05:19.176948', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏位置:东南侧人行梯道大理石砖缺损松动三块(每块3cm*30cm),局部轻微', '647', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_667', '1', '查桥江南坊小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.019233', '1', '2024-03-05 09:05:15.019233', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '查桥江南坊小区', '667', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_668', '1', '西青路,惠暨大道口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.022693', '1', '2024-03-05 09:05:15.022693', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西青路,惠暨大道口', '668', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_669', '1', '广瑞路2519号锦绣东苑', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.026368', '1', '2024-03-05 09:05:15.026368', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广瑞路2519号锦绣东苑', '669', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_670', '1', '羊尖镇羊勤路上的惠珍烟酒店', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.030246', '1', '2024-03-05 09:05:15.030246', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇羊勤路上的惠珍烟酒店', '670', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_648', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.180859', '1', '2024-03-05 09:05:19.180859', '1', 1, '320213', NULL, '1', '0101000020B01100003783C6E28B54834192F19ACD4EA64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏类型:其他,多处墙体刮蹭', '648', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_649', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.184702', '1', '2024-03-05 09:05:19.184702', '1', 1, '320213', NULL, '1', '0101000020B01100003783C6E28B54834192F19ACD4EA64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭', '649', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_650', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.188734', '1', '2024-03-05 09:05:19.188734', '1', 1, '320213', NULL, '1', '0101000020B01100002789DE7A8C54834198E5EB6649A64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,防撞墙右侧墙体刮蹭', '650', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_651', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.192824', '1', '2024-03-05 09:05:19.192824', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '651', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_652', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.19673', '1', '2024-03-05 09:05:19.19673', '1', 1, '320213', NULL, '1', '0101000020B01100004B840DD36A53834165D47CF72EAB4A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,落水管破损', '652', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_961', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.20067', '1', '2024-03-05 09:05:19.20067', '1', 1, '320213', NULL, '1', '0101000020B0110000A6ED1F948652834117105A55F0B24A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏位置:江海西路03标3-ES匝道终点处两侧,防撞墙被剐蹭,损伤面积总共约30个平方', '961', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10164', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.204744', '1', '2024-03-05 09:05:19.204744', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '10164', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_440', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.20921', '1', '2024-03-05 09:05:19.20921', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '440', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10165', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.213432', '1', '2024-03-05 09:05:19.213432', '1', 1, '320213', NULL, '1', '0101000020B01100008F52D0BEDA53834100D715194DA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏位置:景渎立交A匝道由西往南10#墩柱处,墩柱脏污', '10165', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10166', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.217417', '1', '2024-03-05 09:05:19.217417', '1', 1, '320213', NULL, '1', '0101000020B01100000C9800531F53834111213C3021A24A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '损坏位置:伸缩缝锚固区,伸缩缝锚固区混凝土破损', '10166', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_441', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.221241', '1', '2024-03-05 09:05:19.221241', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '441', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_986', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.225258', '1', '2024-03-05 09:05:19.225258', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏程度:重,道板砖缺失8块', '986', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_987', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.230162', '1', '2024-03-05 09:05:19.230162', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:凤翔路高架由南向北LD030至E1匝道口处,5处防护钢板缺失', '987', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_962', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.234351', '1', '2024-03-05 09:05:19.234351', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-16 00:00:00', NULL, '损坏位置:由南向北,道板破损', '962', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_735', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.239126', '1', '2024-03-05 09:05:19.239126', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-08-26 00:00:00', NULL, '损坏类型:损坏,道板松动', '735', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_671', '1', '惠澄大道999号六区门口的小路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.034139', '1', '2024-03-05 09:05:15.034139', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠澄大道999号六区门口的小路', '671', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_672', '1', '盛岸西路,苏嘉路口,盛岸花园三区旁', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.037874', '1', '2024-03-05 09:05:15.037874', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路,苏嘉路口,盛岸花园三区旁', '672', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_673', '1', '天一城A区小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.041454', '1', '2024-03-05 09:05:15.041454', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '天一城A区小区', '673', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_674', '1', '江海西路和凤翔路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.044895', '1', '2024-03-05 09:05:15.044895', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海西路和凤翔路路口', '674', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_675', '1', '春华路和锡兴路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.048558', '1', '2024-03-05 09:05:15.048558', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春华路和锡兴路', '675', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_676', '1', '西漳,水岸雅园119-9号,靓点美甲店', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.05241', '1', '2024-03-05 09:05:15.05241', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西漳,水岸雅园119-9号,靓点美甲店', '676', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_677', '1', '天一城', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.056062', '1', '2024-03-05 09:05:15.056062', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '天一城', '677', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_678', '1', '堰桥西漳惠山大道与天丰路十字路口旁边', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.059789', '1', '2024-03-05 09:05:15.059789', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '堰桥西漳惠山大道与天丰路十字路口旁边', '678', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_679', '1', '洛社镇兰溪路1号和3号厂中间的兰溪路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.063454', '1', '2024-03-05 09:05:15.063454', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洛社镇兰溪路1号和3号厂中间的兰溪路', '679', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_680', '1', '广汇金色华府西门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.066993', '1', '2024-03-05 09:05:15.066993', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广汇金色华府西门口', '680', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_681', '1', '惠钱路129号千峋酒店', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.070975', '1', '2024-03-05 09:05:15.070975', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠钱路129号千峋酒店', '681', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_682', '1', '安镇,铃威路,锡山工业园门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.074558', '1', '2024-03-05 09:05:15.074558', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,铃威路,锡山工业园门口', '682', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_683', '1', '新华路高架下,四季景园附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.078293', '1', '2024-03-05 09:05:15.078293', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新华路高架下,四季景园附近', '683', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_684', '1', '春晖路,紫金新城嘉荫苑门口(查桥', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.082002', '1', '2024-03-05 09:05:15.082002', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春晖路,紫金新城嘉荫苑门口(查桥', '684', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_685', '1', '东安路上,云林地铁站下面,华润江南府门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.085481', '1', '2024-03-05 09:05:15.085481', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东安路上,云林地铁站下面,华润江南府门口', '685', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_686', '1', '行创四路、旺庄路、新光路一带', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.089173', '1', '2024-03-05 09:05:15.089173', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '行创四路、旺庄路、新光路一带', '686', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_687', '1', '梁溪区北大街街道解放路和通益
- 路的丁字路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.09308', '1', '2024-03-05 09:05:15.09308', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梁溪区北大街街道解放路和通益
- 路的丁字路路口', '687', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_688', '1', '纺城大道,东安路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.096673', '1', '2024-03-05 09:05:15.096673', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道,东安路路口', '688', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_689', '1', '甘露,谢埭桥,成联村村委后面,没有门牌', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.100547', '1', '2024-03-05 09:05:15.100547', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '甘露,谢埭桥,成联村村委后面,没有门牌', '689', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_690', '1', '胶阳路,新羊大道路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.10422', '1', '2024-03-05 09:05:15.10422', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胶阳路,新羊大道路口', '690', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_691', '1', '事发地:厚丰路,大成苑附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.10779', '1', '2024-03-05 09:05:15.10779', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '事发地:厚丰路,大成苑附近', '691', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_692', '1', '团结路,锡虞路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.111422', '1', '2024-03-05 09:05:15.111422', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '团结路,锡虞路路口', '692', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_693', '1', '安镇华夏名都小区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.115097', '1', '2024-03-05 09:05:15.115097', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇华夏名都小区', '693', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_694', '1', '安镇中心街邮电弄整个街道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.118714', '1', '2024-03-05 09:05:15.118714', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇中心街邮电弄整个街道', '694', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_695', '1', '马山五号桥工业园', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.122477', '1', '2024-03-05 09:05:15.122477', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '马山五号桥工业园', '695', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_696', '1', '梅梁新村主干线与另一条路的十字路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.126088', '1', '2024-03-05 09:05:15.126088', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅梁新村主干线与另一条路的十字路口', '696', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_697', '1', '笠泽路(融创茂段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.130055', '1', '2024-03-05 09:05:15.130055', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '笠泽路(融创茂段)', '697', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_698', '1', '双河新村', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.133832', '1', '2024-03-05 09:05:15.133832', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '双河新村', '698', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_699', '1', '运河西路旁边', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.137464', '1', '2024-03-05 09:05:15.137464', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河西路旁边', '699', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_700', '1', '水秀新村210-203室', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.14153', '1', '2024-03-05 09:05:15.14153', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '水秀新村210-203室', '700', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_701', '1', '康桥熙园南门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.14513', '1', '2024-03-05 09:05:15.14513', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '康桥熙园南门', '701', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_702', '1', '蠡湖大道跟和风路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.148707', '1', '2024-03-05 09:05:15.148707', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蠡湖大道跟和风路路口', '702', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_703', '1', '溪北新村小区内88号-90号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.152401', '1', '2024-03-05 09:05:15.152401', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '溪北新村小区内88号-90号', '703', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_704', '1', '溪北新村143栋,在146栋和147栋', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.156315', '1', '2024-03-05 09:05:15.156315', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '溪北新村143栋,在146栋和147栋', '704', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_705', '1', '板桥社区前章31号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.160275', '1', '2024-03-05 09:05:15.160275', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '板桥社区前章31号', '705', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_706', '1', '富长桥13号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.163977', '1', '2024-03-05 09:05:15.163977', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '富长桥13号', '706', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_707', '1', '河埒中学附近景宜桥下面', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.167846', '1', '2024-03-05 09:05:15.167846', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '河埒中学附近景宜桥下面', '707', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_708', '1', '河埒街道稻香新村6号门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.171417', '1', '2024-03-05 09:05:15.171417', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '河埒街道稻香新村6号门', '708', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_709', '1', '荷叶新村32号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.175124', '1', '2024-03-05 09:05:15.175124', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '荷叶新村32号', '709', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_710', '1', '山北社区医院门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.178866', '1', '2024-03-05 09:05:15.178866', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山北社区医院门口', '710', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_711', '1', '东港镇东湖塘锡港东路20号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.182833', '1', '2024-03-05 09:05:15.182833', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东港镇东湖塘锡港东路20号', '711', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_712', '1', '大浮漆塘南村158号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.186406', '1', '2024-03-05 09:05:15.186406', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大浮漆塘南村158号', '712', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_713', '1', '胡埭老菜场里(胡埭)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.190094', '1', '2024-03-05 09:05:15.190094', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭老菜场里(胡埭)', '713', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_714', '1', '新荣路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.194605', '1', '2024-03-05 09:05:15.194605', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新荣路', '714', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_715', '1', '新丰苑二期55栋车库对面的理发店', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.198167', '1', '2024-03-05 09:05:15.198167', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新丰苑二期55栋车库对面的理发店', '715', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_716', '1', '鸿泰苑二期136号(鸿声所)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.201767', '1', '2024-03-05 09:05:15.201767', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿泰苑二期136号(鸿声所)', '716', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_717', '1', '鸿达路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.205249', '1', '2024-03-05 09:05:15.205249', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿达路', '717', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_718', '1', '旺庄东路茂业百货附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.208998', '1', '2024-03-05 09:05:15.208998', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄东路茂业百货附近', '718', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_719', '1', '梅村群兴路5号园区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.212726', '1', '2024-03-05 09:05:15.212726', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村群兴路5号园区', '719', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_720', '1', '群兴路7号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.216179', '1', '2024-03-05 09:05:15.216179', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '群兴路7号', '720', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_721', '1', '春潮花园二区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.219652', '1', '2024-03-05 09:05:15.219652', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春潮花园二区', '721', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_722', '1', '旺庄街道群星社区青石桥村', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.223257', '1', '2024-03-05 09:05:15.223257', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄街道群星社区青石桥村', '722', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_723', '1', '梁溪区广益街道月星家具附近的
- 广南路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.226769', '1', '2024-03-05 09:05:15.226769', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梁溪区广益街道月星家具附近的
- 广南路', '723', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_724', '1', '富力城到春城农贸市场的高架下面有一条人行通道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.230643', '1', '2024-03-05 09:05:15.230643', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '富力城到春城农贸市场的高架下面有一条人行通道', '724', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_725', '1', '新吴区广场东路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.234754', '1', '2024-03-05 09:05:15.234754', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区广场东路', '725', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_726', '1', '飞凤路纬三路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.238345', '1', '2024-03-05 09:05:15.238345', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '飞凤路纬三路', '726', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_727', '1', '新锡路锡泰路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.241872', '1', '2024-03-05 09:05:15.241872', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新锡路锡泰路', '727', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_729', '1', '融侨观邸', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.245659', '1', '2024-03-05 09:05:15.245659', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '融侨观邸', '729', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_730', '1', '广南立交Z3匝道(无锡交通建设工程集团有限公司门口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.249337', '1', '2024-03-05 09:05:15.249337', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广南立交Z3匝道(无锡交通建设工程集团有限公司门口)', '730', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_731', '1', '新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.252907', '1', '2024-03-05 09:05:15.252907', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新阳路', '731', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_732', '1', '东安路、纺城大道、锡山大道、坊达路、坊和路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.256721', '1', '2024-03-05 09:05:15.256721', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东安路、纺城大道、锡山大道、坊达路、坊和路', '732', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_733', '1', '高浪东路高浪大桥—高浪立交引道与珠江路连接点', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.26038', '1', '2024-03-05 09:05:15.26038', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '高浪东路高浪大桥—高浪立交引道与珠江路连接点', '733', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_734', '1', '清名桥街道清名一村的对面通扬
- 南路的 81 路公交站', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.263987', '1', '2024-03-05 09:05:15.263987', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '清名桥街道清名一村的对面通扬
- 南路的 81 路公交站', '734', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_735', '1', '金城东路新洲路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.267561', '1', '2024-03-05 09:05:15.267561', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城东路新洲路交叉口', '735', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_736', '1', '安镇的鑫安路、东盛路、锡沪路南面、胶阳路和无锡东站', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.271165', '1', '2024-03-05 09:05:15.271165', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇的鑫安路、东盛路、锡沪路南面、胶阳路和无锡东站', '736', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_737', '1', '和风路博览中心', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.275067', '1', '2024-03-05 09:05:15.275067', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路博览中心', '737', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_738', '1', '南湖大道高浪路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.278724', '1', '2024-03-05 09:05:15.278724', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南湖大道高浪路口', '738', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_739', '1', '二泉路健鼎门口路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.282705', '1', '2024-03-05 09:05:15.282705', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路健鼎门口路段', '739', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_740', '1', '纺城大道,新世界国际门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.286443', '1', '2024-03-05 09:05:15.286443', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道,新世界国际门口', '740', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_741', '1', '扬名街道清一东塘', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.290162', '1', '2024-03-05 09:05:15.290162', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '扬名街道清一东塘', '741', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_742', '1', '广益街道莫家庄78号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.294041', '1', '2024-03-05 09:05:15.294041', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广益街道莫家庄78号', '742', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_743', '1', '长江路和雪梅路往北100米处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.297643', '1', '2024-03-05 09:05:15.297643', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长江路和雪梅路往北100米处', '743', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_744', '1', '南蒋路与立德道、立信大道交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.301375', '1', '2024-03-05 09:05:15.301375', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南蒋路与立德道、立信大道交叉口', '744', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_745', '1', '前进路,叙丰家园,前卫路,金城高架到万科东郡段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.305125', '1', '2024-03-05 09:05:15.305125', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '前进路,叙丰家园,前卫路,金城高架到万科东郡段', '745', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_746', '1', '雪浪街道许舍社区许舍村', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.308766', '1', '2024-03-05 09:05:15.308766', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '雪浪街道许舍社区许舍村', '746', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_747', '1', '北大街街道小三里桥', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.312418', '1', '2024-03-05 09:05:15.312418', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '北大街街道小三里桥', '747', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_748', '1', '钱皋路(盛岸西路路口)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.316359', '1', '2024-03-05 09:05:15.316359', '1', 1, '320200', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱皋路(盛岸西路路口)', '748', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_749', '1', '江溪街道金城东路五洲国际四面', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.320232', '1', '2024-03-05 09:05:15.320232', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江溪街道金城东路五洲国际四面', '749', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_750', '1', '旺庄路、龙山路、天山路、锡兴路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.324475', '1', '2024-03-05 09:05:15.324475', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '旺庄路、龙山路、天山路、锡兴路', '750', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_751', '1', '纺城大道和金城路高架桥下', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.328199', '1', '2024-03-05 09:05:15.328199', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '纺城大道和金城路高架桥下', '751', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_752', '1', '红旗街道李夹里25号-30号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.331952', '1', '2024-03-05 09:05:15.331952', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '红旗街道李夹里25号-30号', '752', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_753', '1', '羊尖,胶阳路,奥科利高新技术无锡有限公司', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.33617', '1', '2024-03-05 09:05:15.33617', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,胶阳路,奥科利高新技术无锡有限公司', '753', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_754', '1', '羊尖街上,欧特福超市对面,锡沪西路西段28号,瑞龙装潢店', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.339768', '1', '2024-03-05 09:05:15.339768', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖街上,欧特福超市对面,锡沪西路西段28号,瑞龙装潢店', '754', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_755', '1', '安国路,安镇菜场北门门面房,宁波汤圆店(安镇)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.343467', '1', '2024-03-05 09:05:15.343467', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安国路,安镇菜场北门门面房,宁波汤圆店(安镇)', '755', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_756', '1', '安镇,车站西村31号(安镇', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.347615', '1', '2024-03-05 09:05:15.347615', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,车站西村31号(安镇', '756', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_757', '1', '春晖中路98号,江苏泰迈克动力科技公司(云林)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.351352', '1', '2024-03-05 09:05:15.351352', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '春晖中路98号,江苏泰迈克动力科技公司(云林)', '757', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_758', '1', '民丰一期与二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.355334', '1', '2024-03-05 09:05:15.355334', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '民丰一期与二期', '758', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_759', '1', '山水西路大浮社区谢古村39号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.359112', '1', '2024-03-05 09:05:15.359112', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水西路大浮社区谢古村39号', '759', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_760', '1', '团结路往锡虞路的路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.362894', '1', '2024-03-05 09:05:15.362894', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '团结路往锡虞路的路段', '760', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_761', '1', '羊尖镇廊下老村委锡沪路313号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.366667', '1', '2024-03-05 09:05:15.366667', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖镇廊下老村委锡沪路313号', '761', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_762', '1', '西漳公园附近十字路口右手边通往万达广场方向有一条非机动车道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.370323', '1', '2024-03-05 09:05:15.370323', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西漳公园附近十字路口右手边通往万达广场方向有一条非机动车道路', '762', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_763', '1', '惠山区橡树湾邸一期孙家面馆门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.373974', '1', '2024-03-05 09:05:15.373974', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '惠山区橡树湾邸一期孙家面馆门口', '763', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_764', '1', '西环路至钱荣路之间的钱胡路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.378197', '1', '2024-03-05 09:05:15.378197', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西环路至钱荣路之间的钱胡路', '764', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_765', '1', '新惠苑北区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.381956', '1', '2024-03-05 09:05:15.381956', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新惠苑北区', '765', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_766', '1', '洋溪路(西溪碧桂园南门段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.385655', '1', '2024-03-05 09:05:15.385655', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '洋溪路(西溪碧桂园南门段)', '766', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_767', '1', '阳山镇新渎社区新阳路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.3892', '1', '2024-03-05 09:05:15.3892', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '阳山镇新渎社区新阳路', '767', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_768', '1', '钱桥玉泉街桥北菜场', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.392787', '1', '2024-03-05 09:05:15.392787', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '钱桥玉泉街桥北菜场', '768', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_769', '1', '玉祁镇隆祁北路附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.39671', '1', '2024-03-05 09:05:15.39671', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '玉祁镇隆祁北路附近', '769', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_770', '1', '金山四支路 30 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.400151', '1', '2024-03-05 09:05:15.400151', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金山四支路 30 号', '770', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_771', '1', '312国道泰伯大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.403592', '1', '2024-03-05 09:05:15.403592', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '312国道泰伯大道', '771', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_772', '1', '盛岸西路、苏嘉路,盛德路与玉泉街道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.40713', '1', '2024-03-05 09:05:15.40713', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛岸西路、苏嘉路,盛德路与玉泉街道', '772', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_773', '1', '盛德路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.410721', '1', '2024-03-05 09:05:15.410721', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '盛德路', '773', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_774', '1', '胜丰路与江海西路交叉口处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.414577', '1', '2024-03-05 09:05:15.414577', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胜丰路与江海西路交叉口处', '774', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_775', '1', '体育中心东大门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.418704', '1', '2024-03-05 09:05:15.418704', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '体育中心东大门', '775', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_776', '1', '解放环路(解放西路与县前西街交叉口西北侧)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.422399', '1', '2024-03-05 09:05:15.422399', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '解放环路(解放西路与县前西街交叉口西北侧)', '776', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_777', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.425992', '1', '2024-03-05 09:05:15.425992', '1', 1, '320299', NULL, '1', '0103000020B011000001000000050000009EBFF50B2A5383415ABE246134994A41DC8A22F93153834151BD6E9C16994A412E4062CE2A538341594DB0F2A9984A4186EEE852225383414D2ADE9DDA984A419EBFF50B2A5383415ABE246134994A41', NULL, NULL, NULL, NULL, '道路积水', '777', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_778', '1', '马山,碧波支路5号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.429659', '1', '2024-03-05 09:05:15.429659', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '马山,碧波支路5号', '778', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_779', '1', '广澄路上,凤翔路东面 20 米', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.433837', '1', '2024-03-05 09:05:15.433837', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '广澄路上,凤翔路东面 20 米', '779', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_780', '1', '民丰路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.437564', '1', '2024-03-05 09:05:15.437564', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '民丰路', '780', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_781', '1', '东亭街道聚江苑', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.44119', '1', '2024-03-05 09:05:15.44119', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '东亭街道聚江苑', '781', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_782', '1', '梁溪区清名桥街道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.444795', '1', '2024-03-05 09:05:15.444795', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梁溪区清名桥街道', '782', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_783', '1', '友谊路和春晖路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.44864', '1', '2024-03-05 09:05:15.44864', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '友谊路和春晖路交界处', '783', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_784', '1', '富力运河十号名龙路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.45264', '1', '2024-03-05 09:05:15.45264', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '富力运河十号名龙路', '784', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_785', '1', '金城东路和团结南路交汇处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.456168', '1', '2024-03-05 09:05:15.456168', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城东路和团结南路交汇处', '785', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_786', '1', '金科世界城附近的闻艺路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.459699', '1', '2024-03-05 09:05:15.459699', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金科世界城附近的闻艺路', '786', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_787', '1', '怀仁路67号,三石电子厂门口路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.463257', '1', '2024-03-05 09:05:15.463257', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '怀仁路67号,三石电子厂门口路段', '787', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_788', '1', '上马墩路, 崇安集贸市场和华夏家
- 具港中间', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.467141', '1', '2024-03-05 09:05:15.467141', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '上马墩路, 崇安集贸市场和华夏家
- 具港中间', '788', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_789', '1', '安镇,安南村,鞋山11号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.470749', '1', '2024-03-05 09:05:15.470749', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇,安南村,鞋山11号', '789', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_790', '1', '江南大学南门山水城K-park附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.474356', '1', '2024-03-05 09:05:15.474356', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江南大学南门山水城K-park附近', '790', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_791', '1', '新明西路 58 号, 广益佳苑二期门
- 面前', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.478017', '1', '2024-03-05 09:05:15.478017', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新明西路 58 号, 广益佳苑二期门
- 面前', '791', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_792', '1', '胡埭中学门口,民生路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.481631', '1', '2024-03-05 09:05:15.481631', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '胡埭中学门口,民生路', '792', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_793', '1', '桐华路和毛岸路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.485065', '1', '2024-03-05 09:05:15.485065', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '桐华路和毛岸路路口', '793', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_794', '1', '蠡湖大道南湖中路匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.489747', '1', '2024-03-05 09:05:15.489747', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蠡湖大道南湖中路匝道', '794', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_795', '1', '无锡地铁二号线靖海站', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.493224', '1', '2024-03-05 09:05:15.493224', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '无锡地铁二号线靖海站', '795', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_796', '1', '维港路(太湖国际一街区段) . 周
- 新路(蠡湖大道至五湖大道之间
- 段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.496718', '1', '2024-03-05 09:05:15.496718', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '维港路(太湖国际一街区段) . 周
- 新路(蠡湖大道至五湖大道之间
- 段)', '796', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_797', '1', '江海南路往学前东路方向匝道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.500161', '1', '2024-03-05 09:05:15.500161', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '江海南路往学前东路方向匝道', '797', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_798', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.503841', '1', '2024-03-05 09:05:15.503841', '1', 1, '320299', NULL, '1', '0103000020B01100000100000005000000714E6611625383416C95B46A2A984A41E6FFF3F06653834145C3F3AF51984A41AE840AA9675383416392237635984A41A40507B862538341C5F9EA230F984A41714E6611625383416C95B46A2A984A41', NULL, NULL, NULL, NULL, '道路积水', '798', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_799', '1', '维港路(太湖国际一街区段)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.507824', '1', '2024-03-05 09:05:15.507824', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '维港路(太湖国际一街区段)', '799', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_800', '1', '南湖大道高浪路交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.511522', '1', '2024-03-05 09:05:15.511522', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南湖大道高浪路交叉口', '800', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_801', '1', '万顺路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.515097', '1', '2024-03-05 09:05:15.515097', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '万顺路', '801', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_803', '1', '海岸城馨园西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.518801', '1', '2024-03-05 09:05:15.518801', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '海岸城馨园西门', '803', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_804', '1', '团结路锡山大道至金城路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.52249', '1', '2024-03-05 09:05:15.52249', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '团结路锡山大道至金城路口', '804', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_805', '1', '朗诗新郡二期', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.526441', '1', '2024-03-05 09:05:15.526441', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朗诗新郡二期', '805', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_806', '1', '二泉路庄桥路至团结路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.529959', '1', '2024-03-05 09:05:15.529959', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '二泉路庄桥路至团结路口', '806', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_807', '1', '贡湖大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.533739', '1', '2024-03-05 09:05:15.533739', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '贡湖大道', '807', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_808', '1', '联福路安泰二路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.537629', '1', '2024-03-05 09:05:15.537629', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '联福路安泰二路', '808', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_809', '1', '新吴区科园路整个路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.541552', '1', '2024-03-05 09:05:15.541552', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区科园路整个路段', '809', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_810', '1', '和风路跟贡湖大道交叉处和风路
- 路段道路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.545425', '1', '2024-03-05 09:05:15.545425', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路跟贡湖大道交叉处和风路
- 路段道路', '810', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_811', '1', '和风路(博览中心斜对角)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.549236', '1', '2024-03-05 09:05:15.549236', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路(博览中心斜对角)', '811', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_812', '1', '长泰国际南A区内(云林', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.553007', '1', '2024-03-05 09:05:15.553007', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '长泰国际南A区内(云林', '812', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_813', '1', '雪峰路 18 号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.556654', '1', '2024-03-05 09:05:15.556654', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '雪峰路 18 号', '813', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_814', '1', '通扬路滨水路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.560663', '1', '2024-03-05 09:05:15.560663', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '通扬路滨水路', '814', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_815', '1', '后西溪', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.565008', '1', '2024-03-05 09:05:15.565008', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '后西溪', '815', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_816', '1', '大通路和兴梁道交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.569008', '1', '2024-03-05 09:05:15.569008', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大通路和兴梁道交叉口', '816', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_817', '1', '鼎新路和大通路交界处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.572661', '1', '2024-03-05 09:05:15.572661', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鼎新路和大通路交界处', '817', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_818', '1', '锡兴路泰山路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.576257', '1', '2024-03-05 09:05:15.576257', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡兴路泰山路', '818', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_819', '1', '道路积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.579937', '1', '2024-03-05 09:05:15.579937', '1', 1, '320206', NULL, '1', '0103000020B01100000100000004000000E0D298DE2753834143A1AB7400A54A41D8F555D52A5383411325D83BD3A44A41E151768627538341A91FD4D9CAA44A41E0D298DE2753834143A1AB7400A54A41', NULL, NULL, NULL, NULL, '道路积水', '819', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_820', '1', '金城路春华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.583734', '1', '2024-03-05 09:05:15.583734', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城路春华路', '820', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_821', '1', '大桥社区大桥村', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.587568', '1', '2024-03-05 09:05:15.587568', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '大桥社区大桥村', '821', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_822', '1', '周新西路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.591666', '1', '2024-03-05 09:05:15.591666', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '周新西路', '822', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_823', '1', '锡兴路江华路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.595454', '1', '2024-03-05 09:05:15.595454', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡兴路江华路', '823', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_824', '1', '信成道 390 号第二中医院门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.599271', '1', '2024-03-05 09:05:15.599271', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '信成道 390 号第二中医院门口', '824', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_502', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.243663', '1', '2024-03-05 09:05:19.243663', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '502', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_503', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.247454', '1', '2024-03-05 09:05:19.247454', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由南向北,人行梯道右侧大理石砖松动两块', '503', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_963', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.251254', '1', '2024-03-05 09:05:19.251254', '1', 1, '320213', NULL, '1', '0101000020B01100006124B48DAE53834125E6CB7F5CA24A41', NULL, NULL, '2023-07-16 00:00:00', NULL, '损坏位置:由东向西桥西头,道板破损', '963', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_964', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.2549', '1', '2024-03-05 09:05:19.2549', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '964', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_965', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.259256', '1', '2024-03-05 09:05:19.259256', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:中,声屏障下封板缺失1处', '965', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_191', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.263188', '1', '2024-03-05 09:05:19.263188', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-11-19 00:00:00', NULL, '损坏类型:其他,泄水井盖缺失3只', '191', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_192', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.267322', '1', '2024-03-05 09:05:19.267322', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-19 00:00:00', NULL, '损坏类型:破损,沥青坑塘', '192', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_966', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.271454', '1', '2024-03-05 09:05:19.271454', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:破损,伸缩缝锚固区破损', '966', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_978', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.275216', '1', '2024-03-05 09:05:19.275216', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏位置:凤翔北路高架01标W5匝道口,伸缩缝防护钢板翘起', '978', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_980', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.27924', '1', '2024-03-05 09:05:19.27924', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏位置:太湖大道高架由东向西28#伸缩缝25米处,沥青拥包,约10个平方', '980', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_981', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.28339', '1', '2024-03-05 09:05:19.28339', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏程度:轻,松动', '981', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_982', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.287334', '1', '2024-03-05 09:05:19.287334', '1', 1, '320213', NULL, '1', '0101000020B0110000EF5FD97C53538341BD287A96DE934A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏位置:东北绿化带内,栏杆底座松动', '982', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_825', '1', '金城新华互通', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.602817', '1', '2024-03-05 09:05:15.602817', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '金城新华互通', '825', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_826', '1', '西环线环湖路不到处', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.606297', '1', '2024-03-05 09:05:15.606297', '1', 1, '320206', NULL, '1', NULL, NULL, NULL, NULL, NULL, '西环线环湖路不到处', '826', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_827', '1', '玉兰花园小区附近', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.609746', '1', '2024-03-05 09:05:15.609746', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '玉兰花园小区附近', '827', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_828', '1', '滨湖区胡埭人民路陆马公路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.613155', '1', '2024-03-05 09:05:15.613155', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '滨湖区胡埭人民路陆马公路', '828', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_829', '1', '华庄华憬佳园西门对面一段 100 米', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.617506', '1', '2024-03-05 09:05:15.617506', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '华庄华憬佳园西门对面一段 100 米', '829', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_830', '1', '蠡湖大道到信成路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.620992', '1', '2024-03-05 09:05:15.620992', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '蠡湖大道到信成路', '830', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_983', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.29188', '1', '2024-03-05 09:05:19.29188', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:其他,江海路人行天桥上方跨路段,桥面大理石砖松动共六块', '983', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_831', '1', '德先路立德道路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.624505', '1', '2024-03-05 09:05:15.624505', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '德先路立德道路口', '831', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_832', '1', '立信大道和和鸣路的交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.628239', '1', '2024-03-05 09:05:15.628239', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '立信大道和和鸣路的交叉口', '832', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_833', '1', '山水东路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.631809', '1', '2024-03-05 09:05:15.631809', '1', 1, '320211', NULL, '1', NULL, NULL, NULL, NULL, NULL, '山水东路', '833', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_834', '1', '和风路与博览中心交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.635746', '1', '2024-03-05 09:05:15.635746', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '和风路与博览中心交叉口', '834', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_835', '1', '运河西路转震泽路大桥下非机动
- 车道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.640121', '1', '2024-03-05 09:05:15.640121', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '运河西路转震泽路大桥下非机动
- 车道', '835', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_984', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.295701', '1', '2024-03-05 09:05:19.295701', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:损坏,沥青坑塘', '984', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_988', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.299769', '1', '2024-03-05 09:05:19.299769', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,约2个平方', '988', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_654', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.303651', '1', '2024-03-05 09:05:19.303651', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭', '654', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_655', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.307482', '1', '2024-03-05 09:05:19.307482', '1', 1, '320213', NULL, '1', '0101000020B011000038CDBBC26C5483418A7C096B70A84A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏位置:金城东高架由东往西LD194处,右侧路面,防撞墙污染', '655', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_656', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.311489', '1', '2024-03-05 09:05:19.311489', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:中,左右两侧防撞墙墙体刮蹭', '656', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_657', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.315355', '1', '2024-03-05 09:05:19.315355', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约两个平方', '657', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_658', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.319158', '1', '2024-03-05 09:05:19.319158', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:中,泄水井盖缺失一块', '658', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_659', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.322817', '1', '2024-03-05 09:05:19.322817', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏类型:其他,伸缩装置防护钢板翘起', '659', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_660', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.326804', '1', '2024-03-05 09:05:19.326804', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:轻,桥面砖破损一块松动二块', '660', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_661', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.331162', '1', '2024-03-05 09:05:19.331162', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏位置:凤翔立交SE匝道由南向东5#伸缩缝5至15米左侧,防撞墙被剐蹭,损伤面积约7个平方', '661', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_836', '1', '吴都路贡湖大道下穿', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.643953', '1', '2024-03-05 09:05:15.643953', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '吴都路贡湖大道下穿', '836', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_837', '1', '朗诗天萃小区门口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.647706', '1', '2024-03-05 09:05:15.647706', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朗诗天萃小区门口', '837', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_838', '1', '锡山大道纺城大道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.651674', '1', '2024-03-05 09:05:15.651674', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡山大道纺城大道', '838', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_839', '1', '富力城到春城农贸市场的高架下
- 面有一条人行通道', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.656567', '1', '2024-03-05 09:05:15.656567', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '富力城到春城农贸市场的高架下
- 面有一条人行通道', '839', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_840', '1', '下穿立交积水', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.660595', '1', '2024-03-05 09:05:15.660595', '1', 1, '320214', NULL, '1', '0103000020B01100000100000005000000BD4E23CC045483417399CA50619F4A41F752A9D906548341FF3262603E9F4A41D0C5E1F004548341D67BABD3209F4A41EFF8F6C102548341E56B4B7D449F4A41BD4E23CC045483417399CA50619F4A41', NULL, NULL, NULL, NULL, '下穿立交积水', '840', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_842', '1', '鸿达路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.664311', '1', '2024-03-05 09:05:15.664311', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '鸿达路', '842', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_843', '1', '锡新路和新光路的交叉口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.667988', '1', '2024-03-05 09:05:15.667988', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡新路和新光路的交叉口', '843', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_844', '1', '水岸佳苑A区和B区', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.671925', '1', '2024-03-05 09:05:15.671925', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '水岸佳苑A区和B区', '844', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_845', '1', '尚品花园前后(新友路. 锡贤路和
- 新韵路)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.676182', '1', '2024-03-05 09:05:15.676182', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '尚品花园前后(新友路. 锡贤路和
- 新韵路)', '845', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_846', '1', '南湖大道高浪路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.679976', '1', '2024-03-05 09:05:15.679976', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '南湖大道高浪路口', '846', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_847', '1', '安镇街道翔云路18号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.683759', '1', '2024-03-05 09:05:15.683759', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道翔云路18号', '847', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_848', '1', '新吴区科园路整个路段', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.68734', '1', '2024-03-05 09:05:15.68734', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区科园路整个路段', '848', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_849', '1', '飞凤路跟鸿山南路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.691664', '1', '2024-03-05 09:05:15.691664', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '飞凤路跟鸿山南路路口', '849', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_850', '1', '锡沪路与团结路路口', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.695472', '1', '2024-03-05 09:05:15.695472', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '锡沪路与团结路路口', '850', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_851', '1', '梅村新锦路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.699339', '1', '2024-03-05 09:05:15.699339', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '梅村新锦路', '851', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_852', '1', '观山路市民中心西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.703042', '1', '2024-03-05 09:05:15.703042', '1', 1, '320291', NULL, '1', NULL, NULL, NULL, NULL, NULL, '观山路市民中心西门', '852', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_853', '1', '谢巷小区后村205号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.706799', '1', '2024-03-05 09:05:15.706799', '1', 1, '320213', NULL, '1', NULL, NULL, NULL, NULL, NULL, '谢巷小区后村205号', '853', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_854', '1', '新荣路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.710587', '1', '2024-03-05 09:05:15.710587', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新荣路', '854', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_855', '1', '朗诗青春未来家园西门', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.714311', '1', '2024-03-05 09:05:15.714311', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '朗诗青春未来家园西门', '855', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_856', '1', '翔云路18号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.718001', '1', '2024-03-05 09:05:15.718001', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '翔云路18号', '856', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_857', '1', '硕放区域,主要是墙宅路沿线', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.722021', '1', '2024-03-05 09:05:15.722021', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '硕放区域,主要是墙宅路沿线', '857', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_858', '1', '安镇街道景瑞望府51- 254号', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.725704', '1', '2024-03-05 09:05:15.725704', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '安镇街道景瑞望府51- 254号', '858', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_859', '1', '羊尖,锡沪路北146号,羊尖鑫祖针织厂(羊尖)', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.729558', '1', '2024-03-05 09:05:15.729558', '1', 1, '320205', NULL, '1', NULL, NULL, NULL, NULL, NULL, '羊尖,锡沪路北146号,羊尖鑫祖针织厂(羊尖)', '859', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_jg_ysfxgk_860', '1', '新吴区广场东路', NULL, '2', NULL, NULL, '2024-03-05 09:05:15.733479', '1', '2024-03-05 09:05:15.733479', '1', 1, '320214', NULL, '1', NULL, NULL, NULL, NULL, NULL, '新吴区广场东路', '860', '雨水', '内涝', 'ps_jg_ysfxgk', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_8', '1', '惠暨大道南匝道', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.747494', '1', '2024-03-05 09:05:15.747494', '1', 1, '320206', NULL, '1', '0101000020B01100006DA04652E85283411FE2C36D2EBE4A41', NULL, NULL, NULL, NULL, '惠暨大道南匝道', '8', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_12', '1', '新友北路', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.751991', '1', '2024-03-05 09:05:15.751991', '1', 1, '320214', NULL, '1', '0101000020B0110000EF061F5CF454834137E784A003A64A41', NULL, NULL, NULL, NULL, '新友北路', '12', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_13', '1', '旺庄立交下穿通道', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.755972', '1', '2024-03-05 09:05:15.755972', '1', 1, '320214', NULL, '1', '0101000020B01100007DFD33FAC5538341254F2F0B17A14A41', NULL, NULL, NULL, NULL, '旺庄立交下穿通道', '13', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_14', '1', '凤翔立交下穿通道', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.760111', '1', '2024-03-05 09:05:15.760111', '1', 1, '320213', NULL, '1', '0101000020B011000084F4B34119538341FBB9FD0B05B24A41', NULL, NULL, NULL, NULL, '凤翔立交下穿通道', '14', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_15', '1', '苏嘉路', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.764475', '1', '2024-03-05 09:05:15.764475', '1', 1, '320206', NULL, '1', '0101000020B0110000E12FD2A491528341C59E50802DB24A41', NULL, NULL, NULL, NULL, '苏嘉路', '15', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_16', '1', '金城路纺城大道', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.768441', '1', '2024-03-05 09:05:15.768441', '1', 1, '320214', NULL, '1', '0101000020B0110000B97F268F70548341D93E8B1593A84A41', NULL, NULL, NULL, NULL, '金城路纺城大道', '16', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_4', '1', '南湖大道高浪路口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.773655', '1', '2024-03-05 09:05:15.773655', '1', 1, '320299', NULL, '1', '0101000020B0110000D885417F91538341AD3DF373879A4A41', NULL, NULL, NULL, NULL, '南湖大道高浪路口', '4', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_5', '1', '和风路博览中心', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.777429', '1', '2024-03-05 09:05:15.777429', '1', 1, '320299', NULL, '1', '0101000020B011000042F82E158A53834135EAD78330954A41', NULL, NULL, NULL, NULL, '和风路博览中心', '5', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_6', '1', '五湖大道高浪路口', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.781482', '1', '2024-03-05 09:05:15.781482', '1', 1, '320299', NULL, '1', '0101000020B0110000F75529142A538341818AFEDCF8984A41', NULL, NULL, NULL, NULL, '五湖大道高浪路口', '6', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_1', '1', '后西溪', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.78553', '1', '2024-03-05 09:05:15.78553', '1', 1, '320213', NULL, '1', '0101000020B0110000B1FA8F4637538341690E1390AFA94A41', NULL, NULL, NULL, NULL, '后西溪', '1', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_9', '1', '黄山路立交', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.789681', '1', '2024-03-05 09:05:15.789681', '1', 1, '320214', NULL, '1', '0101000020B0110000D8E217CC145483413DBDF91D55A04A41', NULL, NULL, NULL, NULL, '黄山路立交', '9', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_10', '1', '新泰路(机场路-长江南路)', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.79385', '1', '2024-03-05 09:05:15.79385', '1', 1, '320214', NULL, '1', '0101000020B0110000BF765DC7385483414D9E91AFB69D4A41', NULL, NULL, NULL, NULL, '新泰路(机场路-长江南路)', '10', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_11', '1', '城南路
- (建发上院)', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.797903', '1', '2024-03-05 09:05:15.797903', '1', 1, '320214', NULL, '1', '0101000020B01100003BDDCBCE025483410AA2B85F039D4A41', NULL, NULL, NULL, NULL, '城南路
- (建发上院)', '11', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_7', '1', '观山路市民中心西门', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.801588', '1', '2024-03-05 09:05:15.801588', '1', 1, '320299', NULL, '1', '0101000020B01100008151695C645383410830BAC853984A41', NULL, NULL, NULL, NULL, '观山路市民中心西门', '7', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_662', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.335172', '1', '2024-03-05 09:05:19.335172', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '662', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_19', '1', '南洋职业技术学院总排上游/山水西路(限流器+液位计)监控站', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.813536', '1', '2024-03-05 09:05:15.813536', '1', 1, '320211', NULL, '1', '0101000020B0110000426D1F82A4528341B6EE2FB689984A41', NULL, NULL, NULL, NULL, '南洋职业技术学院总排上游/山水西路(限流器+液位计)监控站', '19', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_663', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.339603', '1', '2024-03-05 09:05:19.339603', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:中,道板砖缺失3块', '663', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_139', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.343449', '1', '2024-03-05 09:05:19.343449', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-11-27 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一块松动三块', '139', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10167', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.347235', '1', '2024-03-05 09:05:19.347235', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏类型:破损,锚固区破损约两米', '10167', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10168', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.351249', '1', '2024-03-05 09:05:19.351249', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,人行道道板砖损坏缺失', '10168', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_140', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.355405', '1', '2024-03-05 09:05:19.355405', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏类型:其他,道板砖缺失一块', '140', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10169', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.359198', '1', '2024-03-05 09:05:19.359198', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东33#伸缩缝处,锚固区破损,约2m', '10169', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_989', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.363223', '1', '2024-03-05 09:05:19.363223', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)由西向东46号伸缩缝95米处,沥青坑塘,约5个平方', '989', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10170', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.366996', '1', '2024-03-05 09:05:19.366996', '1', 1, '320213', NULL, '1', '0101000020B011000070EB6EC17C538341D14065C0CAB44A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:望江立交e匝道处,沥青坑槽,损伤面积约2个平方', '10170', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10171', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.371291', '1', '2024-03-05 09:05:19.371291', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-16 00:00:00', NULL, '损坏位置:由南向北,道板破损', '10171', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10172', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.375462', '1', '2024-03-05 09:05:19.375462', '1', 1, '320213', NULL, '1', '0101000020B0110000C02194BB3953834165D13BB1B4B54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:中,声屏障下封板缺失1处', '10172', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_736', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.379075', '1', '2024-03-05 09:05:19.379075', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,残钉', '736', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10174', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.382719', '1', '2024-03-05 09:05:19.382719', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖缺损五块,盲道砖缺损一块。', '10174', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_17', '1', '湖玺庄园总排上游/山水东路(限流器+流量计+液位计)监控站', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.805509', '1', '2024-03-05 09:05:15.805509', '1', 1, '320211', NULL, '1', '0101000020B01100002699308DA4528341D9C41027839B4A41', NULL, NULL, NULL, NULL, '湖玺庄园总排上游/山水东路(限流器+流量计+液位计)监控站', '17', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ps_js_yld_18', '1', '宝界公园总排/山水东路(流量计+液位计)监控站', NULL, '3', NULL, NULL, '2024-03-05 09:05:15.809385', '1', '2024-03-05 09:05:15.809385', '1', 1, '320211', NULL, '1', '0101000020B0110000D8003A849B528341EF61A96A849C4A41', NULL, NULL, NULL, NULL, '宝界公园总排/山水东路(流量计+液位计)监控站', '18', '易涝点', '内涝', 'ps_js_yld', NULL, '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10175', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.386579', '1', '2024-03-05 09:05:19.386579', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2019-11-19 00:00:00', NULL, '①桥面铺装共发现桥面铺装共发现 3 处坑槽,总面积为 0.05m2。\n②排水系统泄水孔雨篦缺失 1 处。\n③护栏存在防撞墙锈胀露筋 1 处,面积 0.20m2。\n④附属设施电力箱盖缺失。\n⑤桥头平顺未见异常。\n⑥伸缩缝未见异常。', '10175', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10176', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.390349', '1', '2024-03-05 09:05:19.390349', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏程度:轻,人行道加高带破损', '10176', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10177', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.39416', '1', '2024-03-05 09:05:19.39416', '1', 1, '320213', NULL, '1', '0101000020B0110000256AF024EC5283413C9220B861A44A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:由南往北非机动车道沥青路面积水一处(2m*1m),局部轻微', '10177', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_593', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.399904', '1', '2024-03-05 09:05:19.399904', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:南侧桥头人行道沥青路面横向裂缝一条2m,局部轻微', '593', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1033', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.403862', '1', '2024-03-05 09:05:19.403862', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有垃圾', '1033', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_990', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.407505', '1', '2024-03-05 09:05:19.407505', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:其他,沥青坑塘', '990', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_991', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.411208', '1', '2024-03-05 09:05:19.411208', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)由西向东43#伸缩缝处,防护钢板翘起', '991', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1093', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.414876', '1', '2024-03-05 09:05:19.414876', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:重,锚固区破损(第一车道)', '1093', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1094', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.41864', '1', '2024-03-05 09:05:19.41864', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:重,锚固区破损', '1094', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_664', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.423505', '1', '2024-03-05 09:05:19.423505', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏类型:其他,瓜市桥由西向东,距2#伸缩缝向西20m处,桥面道板砖缺失一块', '664', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_666', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.427506', '1', '2024-03-05 09:05:19.427506', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏类型:破损,局部轻微', '666', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_667', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.431759', '1', '2024-03-05 09:05:19.431759', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏类型:破损,局部轻微', '667', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_668', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.435901', '1', '2024-03-05 09:05:19.435901', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,劝学桥由南向北,桥面大理石砖松动开裂翘起一块', '668', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_669', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.439901', '1', '2024-03-05 09:05:19.439901', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,广北大桥由东向西,桥面大理石砖松动翘起共五块', '669', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_670', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.444026', '1', '2024-03-05 09:05:19.444026', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:中,道板砖缺失15块', '670', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_695', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.571951', '1', '2024-03-05 09:05:19.571951', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:其他,伸缩装置防护钢板翘起', '695', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_696', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.576237', '1', '2024-03-05 09:05:19.576237', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏位置:太湖大道高架由东向西LD018处,防撞墙被剐蹭,损伤面积约两个平方', '696', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_697', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.580377', '1', '2024-03-05 09:05:19.580377', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏位置:太湖大道高架由西向东89#墩柱处,落水管缺失', '697', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_698', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.584977', '1', '2024-03-05 09:05:19.584977', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,落水管脱落', '698', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10181', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.588795', '1', '2024-03-05 09:05:19.588795', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,伸缩装置型钢松动,有异响', '10181', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10182', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.59302', '1', '2024-03-05 09:05:19.59302', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:破损,型钢松动,混泥土破损', '10182', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10183', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.596984', '1', '2024-03-05 09:05:19.596984', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有杂物', '10183', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10184', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.60076', '1', '2024-03-05 09:05:19.60076', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '10184', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10185', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.605291', '1', '2024-03-05 09:05:19.605291', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏类型:破损,桥面砖破碎6块', '10185', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10186', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.609054', '1', '2024-03-05 09:05:19.609054', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-10 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭约5个平方米', '10186', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1020', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.612697', '1', '2024-03-05 09:05:19.612697', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏类型:损坏,道板松动缺损', '1020', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_119', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.616802', '1', '2024-03-05 09:05:19.616802', '1', 1, '320213', NULL, '1', '0101000020B0110000FCF282D41D5383418360C7854CC24A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏位置:凤翔北路高架03标E10匝道处,防撞墙被剐蹭,损伤面积约三个平方', '119', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1021', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.620559', '1', '2024-03-05 09:05:19.620559', '1', 1, '320213', NULL, '1', '0101000020B011000014B7D181F352834139FC6E3254944A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏程度:轻,桥面破损二处', '1021', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_699', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.624433', '1', '2024-03-05 09:05:19.624433', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:其他,落水管脱落', '699', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_700', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.628291', '1', '2024-03-05 09:05:19.628291', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:破损,沥青拥包,损伤面积约两个平方', '700', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_705', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.631947', '1', '2024-03-05 09:05:19.631947', '1', 1, '320213', NULL, '1', '0101000020B0110000AA79872FBB538341AC51814108AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏位置:0#台左翼梁板,露筋', '705', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_706', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.636085', '1', '2024-03-05 09:05:19.636085', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:其他,落水管缺失', '706', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_707', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.639808', '1', '2024-03-05 09:05:19.639808', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:重,沥青坑塘,损伤面积约3个平方', '707', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_709', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.643581', '1', '2024-03-05 09:05:19.643581', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:破损,型钢松动,混泥土破损', '709', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_710', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.647561', '1', '2024-03-05 09:05:19.647561', '1', 1, '320213', NULL, '1', '0101000020B011000038CDBBC26C5483418A7C096B70A84A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏位置:金城东高架由东往西LD196处,右侧下水井盖丢失', '710', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_711', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.651683', '1', '2024-03-05 09:05:19.651683', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,1处花杆缺失', '711', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_712', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.656487', '1', '2024-03-05 09:05:19.656487', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:损坏,缺失1块', '712', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_713', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.66037', '1', '2024-03-05 09:05:19.66037', '1', 1, '320213', NULL, '1', '0101000020B011000065D68B650053834109A08A2F35AE4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,多处围挡膨胀螺丝残钉', '713', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_714', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.664404', '1', '2024-03-05 09:05:19.664404', '1', 1, '320213', NULL, '1', '0101000020B011000095B28C1CBB5383418D81AE4707AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:破损,坑洞', '714', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_715', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.668515', '1', '2024-03-05 09:05:19.668515', '1', 1, '320213', NULL, '1', '0101000020B0110000AA79872FBB538341AC51814108AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,测试松动', '715', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_716', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.679751', '1', '2024-03-05 09:05:19.679751', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,广瑞桥由东向西,伸缩缝垃圾堵塞', '716', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10187', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.683585', '1', '2024-03-05 09:05:19.683585', '1', 1, '320213', NULL, '1', '0101000020B011000014B7D181F352834139FC6E3254944A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏程度:轻,桥面破损二处', '10187', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10188', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.688009', '1', '2024-03-05 09:05:19.688009', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏位置:江海路人行天桥由南向北,跨路段桥面大理石砖松动四块,江海路人行天桥由南向北,跨路段桥面大理石砖松动四块', '10188', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10189', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.692118', '1', '2024-03-05 09:05:19.692118', '1', 1, '320213', NULL, '1', '0101000020B01100005B785719965383415E32004ABBB04A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:破损,长善桥由西向东,路缘石开裂破损一处', '10189', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10190', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.696202', '1', '2024-03-05 09:05:19.696202', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:轻,声屏障破损', '10190', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10191', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.700064', '1', '2024-03-05 09:05:19.700064', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏位置:凤翔立交WN匝道由西往北12#墩柱处,落水管脱落', '10191', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10192', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.70423', '1', '2024-03-05 09:05:19.70423', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,桥栏杆油漆黄锈脱落', '10192', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10193', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.708342', '1', '2024-03-05 09:05:19.708342', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏位置:华庄桥南侧,道板破损', '10193', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10194', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.712313', '1', '2024-03-05 09:05:19.712313', '1', 1, '320213', NULL, '1', '0101000020B0110000E95F597D465383413F0CADF41CA44A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏位置:由西往东桥中位置TD009旁人行道大理石砖破损一块(30cm*40cm),局部轻微', '10194', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10195', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.715984', '1', '2024-03-05 09:05:19.715984', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,道板破损', '10195', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10196', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.719702', '1', '2024-03-05 09:05:19.719702', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏类型:破损,锚固区破损(左侧车道)', '10196', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10197', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.723361', '1', '2024-03-05 09:05:19.723361', '1', 1, '320213', NULL, '1', '0101000020B011000014BDCCD2E8528341F983482AA1A74A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏位置:青祁路高架D1匝道处,沥青裂缝,损伤长度约6m', '10197', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10198', '5', '缺陷-锚头开锚', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.727485', '1', '2024-03-05 09:05:19.727485', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '由于检测条件等各方面原因,共选取了 3 根缆索下锚头进行了抽样开锚检查。\n从抽样的锚头外观检查结果来看,主要病害为锚杯锈蚀,封锚处有少量积水、漏油。', '10198', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_717', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.731278', '1', '2024-03-05 09:05:19.731278', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,江海路人行天桥跨路段,桥名牌字体不完整', '717', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_718', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.735107', '1', '2024-03-05 09:05:19.735107', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,桥栏杆下方大理石砖松动翘起一块', '718', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_719', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.739538', '1', '2024-03-05 09:05:19.739538', '1', 1, '320213', NULL, '1', '0101000020B01100004B840DD36A53834165D47CF72EAB4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,步梯瓷砖脱落', '719', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_720', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.743206', '1', '2024-03-05 09:05:19.743206', '1', 1, '320213', NULL, '1', '0101000020B011000067AD6FE405538341319C32E196B24A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏类型:其他,道板砖凹陷,面积约一个平方', '720', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_721', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.747485', '1', '2024-03-05 09:05:19.747485', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏位置:蠡湖大道高架清晏路北向南第二个墩柱处,落水管脱落,伸缩装置橡胶止水带破损', '721', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_839', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.751671', '1', '2024-03-05 09:05:19.751671', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '839', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1022', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.75551', '1', '2024-03-05 09:05:19.75551', '1', 1, '320213', NULL, '1', '0101000020B01100006E865B7B73538341DFBDA3169DAB4A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏程度:轻,侧石破损', '1022', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_722', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.759509', '1', '2024-03-05 09:05:19.759509', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏位置:江海路高架由东向西28#墩柱处,落水管破损,橡胶止水带破损', '722', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_724', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.763328', '1', '2024-03-05 09:05:19.763328', '1', 1, '320213', NULL, '1', '0101000020B011000039191C7F0F5483410CD7DC6361A84A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏程度:轻,伸缩缝护板破损', '724', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_726', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.76891', '1', '2024-03-05 09:05:19.76891', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏程度:中,落水管缺失', '726', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_727', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.773011', '1', '2024-03-05 09:05:19.773011', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏类型:其他,两处墙漆脱落', '727', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_729', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.777023', '1', '2024-03-05 09:05:19.777023', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)47#伸缩缝向东,栏杆漆皮剥落', '729', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_730', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.781802', '1', '2024-03-05 09:05:19.781802', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约3个平方', '730', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_731', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.786308', '1', '2024-03-05 09:05:19.786308', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏类型:其他,声屏障下封板松动一处', '731', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_732', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.790129', '1', '2024-03-05 09:05:19.790129', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约1个平方', '732', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_733', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.794161', '1', '2024-03-05 09:05:19.794161', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-27 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东97#墩柱处,盖梁底部破损露筋', '733', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_734', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.798282', '1', '2024-03-05 09:05:19.798282', '1', 1, '320213', NULL, '1', '0101000020B01100009C8FEBA333538341CC1682AA6E8D4A41', NULL, NULL, '2023-08-26 00:00:00', NULL, '损坏位置:方湖桥东往西,桥面砖缺失一块', '734', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_737', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.801994', '1', '2024-03-05 09:05:19.801994', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,松动破损', '737', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_738', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.805912', '1', '2024-03-05 09:05:19.805912', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:栏杆底座装饰板,松动破损', '738', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_739', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.811549', '1', '2024-03-05 09:05:19.811549', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约1个平方', '739', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_740', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.815543', '1', '2024-03-05 09:05:19.815543', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约4个平方', '740', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_748', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.819696', '1', '2024-03-05 09:05:19.819696', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,桥面砖缺失一块', '748', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_749', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.823441', '1', '2024-03-05 09:05:19.823441', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,道板破损', '749', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_750', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.827476', '1', '2024-03-05 09:05:19.827476', '1', 1, '320213', NULL, '1', '0101000020B01100006E865B7B73538341DFBDA3169DAB4A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,东林立交由北向南最右车道桥北头侧石破损', '750', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_751', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.831793', '1', '2024-03-05 09:05:19.831793', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏类型:损坏,瓜市桥由西向东,桥面道板砖开裂破损一块', '751', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_754', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.835493', '1', '2024-03-05 09:05:19.835493', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约1个平方', '754', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_755', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.839429', '1', '2024-03-05 09:05:19.839429', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏位置:景渎立交B匝道由西往北距9#伸缩缝还有10米处,沥青网裂,损伤面积约3个平方', '755', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_756', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.843077', '1', '2024-03-05 09:05:19.843077', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:江海路人行天桥跨路段,桥面大理石砖开裂破损一块,江海路人行天桥跨路段,桥面大理石砖开裂破损一块', '756', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_762', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.847134', '1', '2024-03-05 09:05:19.847134', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏类型:破损,防撞墙漆皮剥落', '762', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_763', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.85136', '1', '2024-03-05 09:05:19.85136', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:利民桥由东向西大理石破损2块,利民桥由东向西大理石破损2块', '763', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_764', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.855317', '1', '2024-03-05 09:05:19.855317', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏类型:破损,永旺大桥运河西路南侧楼梯水泥破损', '764', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_766', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.85954', '1', '2024-03-05 09:05:19.85954', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有杂物', '766', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_767', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.863352', '1', '2024-03-05 09:05:19.863352', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏位置:江海路高架由北向南18#伸缩缝处,沥青网裂,损伤面积约3个平方', '767', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_768', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.867259', '1', '2024-03-05 09:05:19.867259', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:其他,沥青拥包,损伤面积约5个平方', '768', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_181', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.871209', '1', '2024-03-05 09:05:19.871209', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-11-21 00:00:00', NULL, '人行道,局部轻微', '181', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1281', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.875563', '1', '2024-03-05 09:05:19.875563', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏类型:破损,桥面积水', '1281', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10199', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.879675', '1', '2024-03-05 09:05:19.879675', '1', 1, '320213', NULL, '1', '0101000020B01100008B5E4645C4528341E4F08264A9A54A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏位置:护坡,勾缝脱落', '10199', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1023', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.88345', '1', '2024-03-05 09:05:19.88345', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-07-08 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失十块', '1023', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_770', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.887192', '1', '2024-03-05 09:05:19.887192', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:损坏,江海路人行天桥跨路段,桥面大理石砖破损两块', '770', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_771', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.891145', '1', '2024-03-05 09:05:19.891145', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏程度:轻,侧石破损', '771', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_772', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.894801', '1', '2024-03-05 09:05:19.894801', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:其他,伸缩缝堵塞', '772', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_773', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.898692', '1', '2024-03-05 09:05:19.898692', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '773', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_774', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.90253', '1', '2024-03-05 09:05:19.90253', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一', '774', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_775', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.906231', '1', '2024-03-05 09:05:19.906231', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:其他,道板砖缺失11块', '775', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_776', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.91021', '1', '2024-03-05 09:05:19.91021', '1', 1, '320213', NULL, '1', '0101000020B011000030FA0A7515538341B1A0F7E8C5B04A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏程度:中,落水管缺失', '776', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_777', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.913985', '1', '2024-03-05 09:05:19.913985', '1', 1, '320213', NULL, '1', '0101000020B011000040CC178220538341C5203EA801B24A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏程度:中,落水管脱落', '777', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_778', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.917735', '1', '2024-03-05 09:05:19.917735', '1', 1, '320213', NULL, '1', '0101000020B011000082C0CA30175383410F6C405423B14A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏位置:凤翔立交由北向东31#墩柱处,落水管缺失', '778', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_779', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.921493', '1', '2024-03-05 09:05:19.921493', '1', 1, '320213', NULL, '1', '0101000020B011000082C0CA30175383410F6C405423B14A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:其他,桥梁下方有大量易燃物', '779', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_780', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.925134', '1', '2024-03-05 09:05:19.925134', '1', 1, '320213', NULL, '1', '0101000020B011000082C0CA30175383410F6C405423B14A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:其他,落水管缺失', '780', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_794', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.92904', '1', '2024-03-05 09:05:19.92904', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块', '794', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_795', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.933269', '1', '2024-03-05 09:05:19.933269', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:巡桥由北向南人行道处,道板砖松动一块', '795', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_797', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.937407', '1', '2024-03-05 09:05:19.937407', '1', 1, '320213', NULL, '1', '0101000020B0110000848B152A88538341A3AD836B57A24A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏程度:轻,路名牌表面污渍', '797', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10406', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.941435', '1', '2024-03-05 09:05:19.941435', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,栏杆基础松动', '10406', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_798', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.945271', '1', '2024-03-05 09:05:19.945271', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖缺失二块', '798', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_799', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.949275', '1', '2024-03-05 09:05:19.949275', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-08-16 00:00:00', NULL, '损坏类型:其他,落水管缺失', '799', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_800', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.952932', '1', '2024-03-05 09:05:19.952932', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2023-08-16 00:00:00', NULL, '损坏位置:金城路立交C匝道由北向东2#伸缩缝处,防撞墙被剐蹭,损伤面积约6个平方', '800', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1104', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.956618', '1', '2024-03-05 09:05:19.956618', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏类型:损坏,瓜市桥由西向东,桥面道板砖破损一块', '1104', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1105', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.960318', '1', '2024-03-05 09:05:19.960318', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏类型:破损,桥面砖破损六块', '1105', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1109', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.963989', '1', '2024-03-05 09:05:19.963989', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-06-25 00:00:00', NULL, '损坏位置:西汀桥由东向西,桥面道板砖缺失破损两块,西汀桥由东向西,桥面道板砖缺失破损两块', '1109', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1110', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.96788', '1', '2024-03-05 09:05:19.96788', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-25 00:00:00', NULL, '损坏程度:轻,瓜市桥由东向西,伸缩缝垃圾堵塞', '1110', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1111', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.972219', '1', '2024-03-05 09:05:19.972219', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-06-24 00:00:00', NULL, '损坏程度:重,落水管连接处漏水,共三处', '1111', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1112', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.976049', '1', '2024-03-05 09:05:19.976049', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-06-24 00:00:00', NULL, '损坏程度:重,伸缩缝止水带破损', '1112', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1113', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.979772', '1', '2024-03-05 09:05:19.979772', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-24 00:00:00', NULL, '损坏位置:钱荣路高架由北向南LD142,泄水井盖缺失两只', '1113', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1114', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.98348', '1', '2024-03-05 09:05:19.98348', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-22 00:00:00', NULL, '损坏位置:青祁路高架由北向南17与15#墩柱处,防撞墙外侧混凝土开裂', '1114', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1115', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.987112', '1', '2024-03-05 09:05:19.987112', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-22 00:00:00', NULL, '损坏程度:重,防撞墙外侧混凝土剥落', '1115', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1116', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.991892', '1', '2024-03-05 09:05:19.991892', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-06-22 00:00:00', NULL, '损坏位置:凤翔路高架A匝道5#墩柱处,防撞墙外侧混凝土破损', '1116', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1117', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:19.996004', '1', '2024-03-05 09:05:19.996004', '1', 1, '320213', NULL, '1', '0101000020B01100006601131F59538341938B3178FDAB4A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏类型:破损,桥面大理石多处破损', '1117', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1118', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.000103', '1', '2024-03-05 09:05:20.000103', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏位置:运河西路桥西头,不明线组缠绕', '1118', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1119', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.003868', '1', '2024-03-05 09:05:20.003868', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏位置:永旺大桥由西向东运河西路 中间车道型钢松动 车辆过抖动,型钢松动', '1119', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_812', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.007646', '1', '2024-03-05 09:05:20.007646', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏类型:其他,广北大桥由西向东,由东向西双向伸缩缝垃圾堵塞', '812', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_815', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.01193', '1', '2024-03-05 09:05:20.01193', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏类型:其他,沥青拥包,损伤面积约3㎡', '815', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_852', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.015784', '1', '2024-03-05 09:05:20.015784', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏程度:轻,桥面砖破碎松动二块', '852', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_890', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.019497', '1', '2024-03-05 09:05:20.019497', '1', 1, '320213', NULL, '1', '0101000020B0110000F4F32667B4538341F45E43C604A04A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:损坏,栏杆基础贴面松动脱落', '890', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_102', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.02317', '1', '2024-03-05 09:05:20.02317', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '102', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_200', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.026794', '1', '2024-03-05 09:05:20.026794', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏程度:轻,局部轻微', '200', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_103', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.030594', '1', '2024-03-05 09:05:20.030594', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约两个平方', '103', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_853', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.034423', '1', '2024-03-05 09:05:20.034423', '1', 1, '320213', NULL, '1', '0101000020B0110000BB2873498252834131CC424B03A54A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,局部轻微', '853', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10201', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.038179', '1', '2024-03-05 09:05:20.038179', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏位置:西汀桥由东向西,桥面道板砖开裂破损六块,西汀桥由东向西,桥面道板砖开裂破损六块', '10201', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_104', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.042104', '1', '2024-03-05 09:05:20.042104', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:破损,沥青凹陷', '104', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10202', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.045908', '1', '2024-03-05 09:05:20.045908', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏类型:损坏,露筋', '10202', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10203', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.049567', '1', '2024-03-05 09:05:20.049567', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏程度:轻,局部轻微', '10203', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10204', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.053873', '1', '2024-03-05 09:05:20.053873', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B71E85528341BD5F774A08B34A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约10个平方', '10204', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_105', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.057696', '1', '2024-03-05 09:05:20.057696', '1', 1, '320213', NULL, '1', '0101000020B01100004B840DD36A53834165D47CF72EAB4A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏程度:轻,桥面盲道砖松动', '105', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10205', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.061733', '1', '2024-03-05 09:05:20.061733', '1', 1, '320213', NULL, '1', '0101000020B0110000C298FB76FD52834121BF45D709AC4A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '上部结构,局部轻微', '10205', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10206', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.065932', '1', '2024-03-05 09:05:20.065932', '1', 1, '320213', NULL, '1', '0101000020B0110000E69532E405538341B9CE4D3154AF4A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:凤翔路高架D3匝道由南向北1#伸缩缝处,伸缩缝防护钢板翘起', '10206', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1024', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.07014', '1', '2024-03-05 09:05:20.07014', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏类型:破损,人行道砖破损', '1024', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10207', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.074131', '1', '2024-03-05 09:05:20.074131', '1', 1, '320213', NULL, '1', '0101000020B01100009F707D009553834128662F8501A44A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:轻,道板缺失', '10207', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10208', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.079282', '1', '2024-03-05 09:05:20.079282', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '人行道,局部轻微', '10208', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10209', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.083414', '1', '2024-03-05 09:05:20.083414', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10209', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10211', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.090859', '1', '2024-03-05 09:05:20.090859', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约3个平方', '10211', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10212', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.094567', '1', '2024-03-05 09:05:20.094567', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏类型:其他,声屏障下封板松动一处', '10212', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10213', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.098326', '1', '2024-03-05 09:05:20.098326', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2019-11-25 00:00:00', NULL, '桥墩存在 1 处网裂,面积 0.10m2;1 处蜂窝麻面,面积 0.50m2;1 处渗水腐蚀。桥台存在 1 处钢筋外露。 ②支座未见异常。 ', '10213', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1025', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.102101', '1', '2024-03-05 09:05:20.102101', '1', 1, '320213', NULL, '1', '0101000020B01100009BBA32460D538341B6A1292BA18F4A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:sw匝道南往北,伸缩缝垃圾', '1025', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1070', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.105928', '1', '2024-03-05 09:05:20.105928', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏程度:轻,沥青下沉', '1070', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1034', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.110028', '1', '2024-03-05 09:05:20.110028', '1', 1, '320213', NULL, '1', '0101000020B0110000D63F417E2A5383418AA2B2E72DB34A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝垃圾堵塞', '1034', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1035', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.114106', '1', '2024-03-05 09:05:20.114106', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-06 00:00:00', NULL, '损坏类型:破损,防撞墙外侧混凝土破损严重', '1035', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_854', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.118984', '1', '2024-03-05 09:05:20.118984', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏程度:重,外侧防撞墙锈胀露筋,损伤面积约4个平方', '854', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_855', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.122809', '1', '2024-03-05 09:05:20.122809', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏程度:重,沥青网裂,损伤面积约5个平方', '855', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_59', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.127975', '1', '2024-03-05 09:05:20.127975', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-11-20 00:00:00', NULL, '①4#墩锈胀露筋,面积 0.20m 2。 ②支座未见明显病害。 ', '59', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10214', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.131887', '1', '2024-03-05 09:05:20.131887', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:道板破损,局部轻微', '10214', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10215', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.135735', '1', '2024-03-05 09:05:20.135735', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:其他,限载牌', '10215', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10216', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.139348', '1', '2024-03-05 09:05:20.139348', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:中,防撞墙漆皮剥落,损伤面积约一个平方', '10216', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10217', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.143411', '1', '2024-03-05 09:05:20.143411', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '10217', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10218', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.147426', '1', '2024-03-05 09:05:20.147426', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,局部轻微', '10218', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10219', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.151072', '1', '2024-03-05 09:05:20.151072', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,局部轻微', '10219', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10220', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.155196', '1', '2024-03-05 09:05:20.155196', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏类型:其他,瓜市桥由西向东,距2#伸缩缝向西20m处,桥面道板砖缺失一块', '10220', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1049', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.159208', '1', '2024-03-05 09:05:20.159208', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏位置:西汀桥由东向西,桥面道板砖破损两块,西汀桥由东向西,桥面道板砖破损两块', '1049', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1050', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.163599', '1', '2024-03-05 09:05:20.163599', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏程度:轻,勤丰桥由西向东,伸缩缝垃圾堵塞', '1050', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10221', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.167891', '1', '2024-03-05 09:05:20.167891', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,泄水井盖缺失两只', '10221', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10222', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.171724', '1', '2024-03-05 09:05:20.171724', '1', 1, '320213', NULL, '1', '0101000020B011000067AD6FE405538341319C32E196B24A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏类型:其他,道板砖凹陷,面积约一个平方', '10222', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10223', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.176595', '1', '2024-03-05 09:05:20.176595', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-08-28 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)47#伸缩缝向东,栏杆漆皮剥落', '10223', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10224', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.180587', '1', '2024-03-05 09:05:20.180587', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北56#墩处,落水管缺失2个', '10224', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10225', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.185679', '1', '2024-03-05 09:05:20.185679', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏位置:西汀桥由西向东,由东向西双向伸缩缝垃圾堵塞,西汀桥由西向东,由东向西双向伸缩缝垃圾堵塞', '10225', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10226', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.189417', '1', '2024-03-05 09:05:20.189417', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏类型:其他,局部轻微', '10226', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1051', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.193052', '1', '2024-03-05 09:05:20.193052', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏程度:轻,侧面砖松动四处', '1051', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10227', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.19703', '1', '2024-03-05 09:05:20.19703', '1', 1, '320213', NULL, '1', '0101000020B0110000D63F417E2A5383418AA2B2E72DB34A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏类型:其他,伸缩缝有垃圾', '10227', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10228', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.200885', '1', '2024-03-05 09:05:20.200885', '1', 1, '320213', NULL, '1', '0101000020B0110000D5DDFC53E6528341A1DB4BD034AD4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,损伤面积约两个平方', '10228', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10229', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.204908', '1', '2024-03-05 09:05:20.204908', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约1个平方', '10229', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10230', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.208737', '1', '2024-03-05 09:05:20.208737', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,约2个平方', '10230', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10231', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.212436', '1', '2024-03-05 09:05:20.212436', '1', 1, '320213', NULL, '1', '0101000020B011000006C982D3275383414B66F5840BAB4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:破损,侧石破损', '10231', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1127', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.444843', '1', '2024-03-05 09:05:20.444843', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏类型:破损,桥面砖破损一块', '1127', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10232', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.216248', '1', '2024-03-05 09:05:20.216248', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-18 00:00:00', NULL, '损坏位置:钱荣路高架由北向南LD144处,沥青坑塘,损伤面积约两个平方', '10232', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10233', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.22005', '1', '2024-03-05 09:05:20.22005', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10233', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10234', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.224282', '1', '2024-03-05 09:05:20.224282', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-17 00:00:00', NULL, '箱梁段存在腹板和翼缘板共计 2 处网状裂缝,总面积 0.80m 2;翼缘板 24 条横向裂缝,总长度 44.3m;腹板 2 条斜向裂缝,总长度 2.41m;腹板 1 条纵向裂缝,长度 0.4m;腹板 17 条竖向裂缝,总长度 14.2m;底板 10 条纵向裂缝,总长度 20.9m;底板 8 条横向裂缝,总长度 11.9m;底板 1 条 L 型裂缝,长度 1.8m;底板 4 处纵向裂缝修补处延伸,总长度 4.3m;底板 1 处裂缝修补痕迹未见异常。箱梁共存在 4 处析白,总面积为 1.60m 2;10 处麻面,总面积为 4.77m 2;1 处焊渣麻面;7 处混凝土破损,总面积为 0.91m 2; 6 处混凝土锈胀露筋,总面积为 2.43m 2;3 处混凝土破损露筋,总面积为 0.86m 2;2 处空洞,总面积为 0.02m 2,1 处受水侵害;1 处高空坠物。 ', '10234', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10235', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.228097', '1', '2024-03-05 09:05:20.228097', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '10235', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10236', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.231804', '1', '2024-03-05 09:05:20.231804', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10236', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10237', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.235797', '1', '2024-03-05 09:05:20.235797', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '10237', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10238', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.239451', '1', '2024-03-05 09:05:20.239451', '1', 1, '320213', NULL, '1', '0101000020B01100009C1AAF15F952834188AA0AADD2A24A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏程度:轻,局部轻微', '10238', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10239', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.243225', '1', '2024-03-05 09:05:20.243225', '1', 1, '320213', NULL, '1', '0101000020B011000049C9EB2033538341ABC2115867B44A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:刘潭桥浜桥由南向北人行道处,道板砖破损4块,松动两块', '10239', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10240', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.247271', '1', '2024-03-05 09:05:20.247271', '1', 1, '320213', NULL, '1', '0101000020B01100003DDB5C770B538341D5B9303850B24A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏类型:破损,道板砖破损一块', '10240', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10241', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.251226', '1', '2024-03-05 09:05:20.251226', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:破损,落水管破损', '10241', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10242', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.255383', '1', '2024-03-05 09:05:20.255383', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏位置:凤翔路高架51#伸缩缝由南向北约3m处,沥青坑塘(边车道)', '10242', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1064', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.259276', '1', '2024-03-05 09:05:20.259276', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏类型:损坏,道板松动缺损', '1064', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10243', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.263533', '1', '2024-03-05 09:05:20.263533', '1', 1, '320213', NULL, '1', '0101000020B0110000BB2873498252834131CC424B03A54A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,局部轻微', '10243', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1075', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.26807', '1', '2024-03-05 09:05:20.26807', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏类型:其他,沥青裂缝凹陷严重', '1075', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1076', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.271866', '1', '2024-03-05 09:05:20.271866', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏位置:凤翔路高架由北向南43#伸缩缝处,沥青坑塘二次凹陷', '1076', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1077', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.275788', '1', '2024-03-05 09:05:20.275788', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏位置:钱荣路高架由南向北起点处,两条沥青裂缝', '1077', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1078', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.279703', '1', '2024-03-05 09:05:20.279703', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:重,沥青坑塘,面积约两个平方', '1078', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1079', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.283434', '1', '2024-03-05 09:05:20.283434', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,桥面大理石砖松动破损六块', '1079', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1080', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.287308', '1', '2024-03-05 09:05:20.287308', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:轻,洪口圩中桥由南向北,伸缩缝锚固区开裂破损三处', '1080', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1081', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.290972', '1', '2024-03-05 09:05:20.290972', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:轻,桥面砖松动一块', '1081', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1082', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.294924', '1', '2024-03-05 09:05:20.294924', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-06-30 00:00:00', NULL, '损坏位置:姚湾立交A匝道由北向东起点处,防撞墙被剐蹭,损伤面积约三个平方', '1082', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1083', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.299468', '1', '2024-03-05 09:05:20.299468', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-30 00:00:00', NULL, '损坏程度:重,沥青坑塘,S=2㎡', '1083', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1084', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.303748', '1', '2024-03-05 09:05:20.303748', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏类型:其他,锚固区破损', '1084', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1085', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.308538', '1', '2024-03-05 09:05:20.308538', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏程度:重,沥青坑塘,面积约两个平方', '1085', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10244', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.312344', '1', '2024-03-05 09:05:20.312344', '1', 1, '320213', NULL, '1', '0101000020B01100005D436223BB5383415F89CE9A07AA4A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏位置:车道中央,沥青坑洞', '10244', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10245', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.316039', '1', '2024-03-05 09:05:20.316039', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏程度:中,防护钢板翘起并破损', '10245', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10246', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.319994', '1', '2024-03-05 09:05:20.319994', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北LD442向南10米处,沥青坑塘,损伤面积约一个平方', '10246', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10247', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.32371', '1', '2024-03-05 09:05:20.32371', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏位置:瓜市桥由东向西,桥面道板砖破损一块,瓜市桥由东向西,桥面道板砖破损一块', '10247', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10248', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.327592', '1', '2024-03-05 09:05:20.327592', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏位置:阅溪桥西往东,阅溪桥由西向东,2#伸缩缝右侧,侧边混凝土破损剥落两块', '10248', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10249', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.331388', '1', '2024-03-05 09:05:20.331388', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10249', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10250', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.33521', '1', '2024-03-05 09:05:20.33521', '1', 1, '320213', NULL, '1', '0101000020B0110000F95D91527153834173E1B23834A24A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:破损,沥青裂缝,长度约3m', '10250', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10251', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.339003', '1', '2024-03-05 09:05:20.339003', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭', '10251', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10252', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.342833', '1', '2024-03-05 09:05:20.342833', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖缺失二块', '10252', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10253', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.346787', '1', '2024-03-05 09:05:20.346787', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:破损,伸缩缝锚固区破损', '10253', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10254', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.350585', '1', '2024-03-05 09:05:20.350585', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:梁溪路下穿通道桥由北向南人行道处,道板砖破损2块', '10254', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10255', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.35449', '1', '2024-03-05 09:05:20.35449', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,约2个平方', '10255', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10256', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.358721', '1', '2024-03-05 09:05:20.358721', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:由北向南,道板松动', '10256', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10257', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.362561', '1', '2024-03-05 09:05:20.362561', '1', 1, '320213', NULL, '1', '0101000020B0110000EB3F241E3C538341F13E5573AFA84A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏类型:破损,盲道道板破损', '10257', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10258', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.366469', '1', '2024-03-05 09:05:20.366469', '1', 1, '320213', NULL, '1', '0101000020B011000067AD6FE405538341319C32E196B24A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:福昌桥由东向西人行道处,道板砖破损,损伤面积约一个平方', '10258', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10259', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.370249', '1', '2024-03-05 09:05:20.370249', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏位置:由东往西机动车道最后一条伸缩缝至下坡处,机动车道沥青路面多处横向裂缝(共10m,湖光仪器厂旁),局部轻微', '10259', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10260', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.374262', '1', '2024-03-05 09:05:20.374262', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,桥面砖破损一块松动四块共二处', '10260', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10261', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.37826', '1', '2024-03-05 09:05:20.37826', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2019-11-23 00:00:00', NULL, '①桥面铺装未见异常。\n②排水系统泄水孔雨篦缺失 1 处;4#墩落水管缺失 1 处。\n③护栏存在防撞墙 1 处锈胀,面积 8.00m2;4 处锈胀露筋,总面积 16.00m2。\n④附属设施发现全桥电力箱锈蚀、电箱盖缺失。\n⑤桥头平顺未见明显异常。\n⑥伸缩缝 2 处橡胶止水带破损。', '10261', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10262', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.382192', '1', '2024-03-05 09:05:20.382192', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:轻,桥面砖破损一块松动二块', '10262', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1244', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.386148', '1', '2024-03-05 09:05:20.386148', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏类型:其他,防护钢板变形', '1244', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1245', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.390108', '1', '2024-03-05 09:05:20.390108', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏位置:广北大桥由东向西,非机动车道右侧路缘石开裂破损一处,广北大桥由东向西,非机动车道右侧路缘石开裂破损一处', '1245', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1160', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.393946', '1', '2024-03-05 09:05:20.393946', '1', 1, '320213', NULL, '1', '0101000020B0110000100F6866CD5383413553E8F636B14A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:毛岸里桥由西向东,伸缩缝垃圾堵塞,毛岸里桥由西向东,伸缩缝垃圾堵塞', '1160', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1161', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.398263', '1', '2024-03-05 09:05:20.398263', '1', 1, '320213', NULL, '1', '0101000020B0110000D9A3F0D2BA53834160CA876004B14A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏类型:其他,大横江桥由西向东,伸缩缝垃圾堵塞', '1161', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1162', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.401923', '1', '2024-03-05 09:05:20.401923', '1', 1, '320213', NULL, '1', '0101000020B011000075292E29F5528341C3546C5E20904A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏位置:两侧桥名牌,桥名牌字迹模糊', '1162', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1163', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.406173', '1', '2024-03-05 09:05:20.406173', '1', 1, '320213', NULL, '1', '0101000020B0110000689A37B5C752834101B8041EB58E4A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏程度:轻,桥名牌字迹模糊', '1163', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1164', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.409856', '1', '2024-03-05 09:05:20.409856', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏位置:桥面,破损', '1164', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1165', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.413434', '1', '2024-03-05 09:05:20.413434', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏位置:桥面,道板下沉', '1165', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1120', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.417149', '1', '2024-03-05 09:05:20.417149', '1', 1, '320213', NULL, '1', '0101000020B011000006C982D3275383414B66F5840BAB4A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏程度:重,大理石多处破损', '1120', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1121', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.421171', '1', '2024-03-05 09:05:20.421171', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏类型:损坏,西汀桥由东向西,桥面道板砖缺失破损两块', '1121', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1122', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.42479', '1', '2024-03-05 09:05:20.42479', '1', 1, '320213', NULL, '1', '0101000020B0110000C304AE2D16538341D73E1DA567B14A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏位置:凤翔立交由南往北E匝道口,路平石有坑', '1122', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1123', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.428582', '1', '2024-03-05 09:05:20.428582', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏类型:破损,道板砖破损6块,缺失5块', '1123', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1124', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.432563', '1', '2024-03-05 09:05:20.432563', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏类型:破损,防拋网油漆剥落两处', '1124', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1125', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.437172', '1', '2024-03-05 09:05:20.437172', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏程度:轻,泄水井盖缺失1只', '1125', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1126', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.441038', '1', '2024-03-05 09:05:20.441038', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏位置:凤翔路高架由北向南51#伸缩缝处,混凝土开裂破损', '1126', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1128', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.448719', '1', '2024-03-05 09:05:20.448719', '1', 1, '320213', NULL, '1', '0101000020B0110000C298FB76FD52834121BF45D709AC4A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '桥名牌,局部轻微', '1128', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1129', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.452738', '1', '2024-03-05 09:05:20.452738', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '桥名牌,局部轻微', '1129', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1130', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.456476', '1', '2024-03-05 09:05:20.456476', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-19 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由南向北,非机动车道上坡处拐角,桥栏杆下方大理石破损一块', '1130', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_137', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.460335', '1', '2024-03-05 09:05:20.460335', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-27 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北起点处,沥青坑塘,损伤面积约一个平方', '137', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10279', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.464138', '1', '2024-03-05 09:05:20.464138', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:破损,局部轻微', '10279', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10263', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.468539', '1', '2024-03-05 09:05:20.468539', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '箱梁底板存在 2 处横向裂缝,总长度为 2.5m;翼缘板存在 1 处横向裂缝,长度为 1.8m;腹板存在 1 处网裂,面积 0.65m2。箱梁共存在 3 处混凝土破损,总面积为 0.15m 2; 1 处锈胀露筋,面积 0.10m 2;2 处析白泛碱,总面积为 0.40m 2。 ', '10263', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10265', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.472429', '1', '2024-03-05 09:05:20.472429', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏程度:中,起皮剥落,损伤面积约三个平方', '10265', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10266', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.476289', '1', '2024-03-05 09:05:20.476289', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏位置:江海路高架由北向南18#伸缩缝处,沥青网裂,损伤面积约3个平方', '10266', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10267', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.480176', '1', '2024-03-05 09:05:20.480176', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-08-20 00:00:00', NULL, '损坏类型:其他,道板砖缺失11块', '10267', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10268', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.483821', '1', '2024-03-05 09:05:20.483821', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏程度:轻,裂缝', '10268', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10269', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.487493', '1', '2024-03-05 09:05:20.487493', '1', 1, '320213', NULL, '1', '0101000020B0110000D8CA4489A55383419A95B42635A04A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:栏杆基础,贴面脱落', '10269', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_160', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.491295', '1', '2024-03-05 09:05:20.491295', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏位置:景渎立交E匝道6#伸缩缝由北向东25米,沥青坑塘,损伤面积约两个平方', '160', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_185', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.495106', '1', '2024-03-05 09:05:20.495106', '1', 1, '320213', NULL, '1', '0101000020B0110000F7936A88B6538341D83D076E96A94A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏类型:其他,半夜浜桥由西向东,桥面道板砖松动凹陷一处', '185', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_187', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.498712', '1', '2024-03-05 09:05:20.498712', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,江海路人行天桥跨路段,道板松动开裂多块', '187', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_188', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.502512', '1', '2024-03-05 09:05:20.502512', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,桥面砖缺失二处二块', '188', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_179', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.506686', '1', '2024-03-05 09:05:20.506686', '1', 1, '320213', NULL, '1', '0101000020B0110000CC833B3AA7528341350F27406BB04A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:南侧非机动车道,伸缩缝垃圾堵塞', '179', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10270', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.510545', '1', '2024-03-05 09:05:20.510545', '1', 1, '320213', NULL, '1', '0101000020B0110000C08274FA2F538341108255E51FB04A41', NULL, NULL, '2023-08-16 00:00:00', NULL, '损坏类型:其他,两新桥由北向南,由南向北双向伸缩缝垃圾堵塞', '10270', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1175', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.515138', '1', '2024-03-05 09:05:20.515138', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约5㎡', '1175', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1176', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.518894', '1', '2024-03-05 09:05:20.518894', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏位置:江海西路高架01标由东向西LD289处,伸缩缝防护钢板变形', '1176', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1177', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.522503', '1', '2024-03-05 09:05:20.522503', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:轻,桥头跳车,沥青下沉', '1177', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1166', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.526039', '1', '2024-03-05 09:05:20.526039', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏类型:其他,落水管脱落且缺失', '1166', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1167', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.529659', '1', '2024-03-05 09:05:20.529659', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏程度:轻,泄水井盖缺失1只且泄水孔堵塞,尺寸:590*270*100', '1167', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1168', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.533507', '1', '2024-03-05 09:05:20.533507', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏程度:轻,桥面砖翘起', '1168', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1171', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.537203', '1', '2024-03-05 09:05:20.537203', '1', 1, '320213', NULL, '1', '0101000020B0110000655D1CB787538341B60303A4F8B44A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏位置:望江立交由南向东第三条伸缩缝处,止水带通长脱落', '1171', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1172', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.541154', '1', '2024-03-05 09:05:20.541154', '1', 1, '320213', NULL, '1', '0101000020B01100004FEEB73DD753834121A1D8A46DA74A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:其他,路平石开裂且破损', '1172', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1173', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.545161', '1', '2024-03-05 09:05:20.545161', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏位置:金城东路高架(2)B匝道由西向东LD075处,沥青裂缝二次开裂', '1173', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1169', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.549039', '1', '2024-03-05 09:05:20.549039', '1', 1, '320213', NULL, '1', '0101000020B0110000E482FADC035383412FF1806883984A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:破损,防撞墙外侧开裂', '1169', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1170', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.552951', '1', '2024-03-05 09:05:20.552951', '1', 1, '320213', NULL, '1', '0101000020B0110000E482FADC035383412FF1806883984A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:破损,防撞墙外侧锈胀露筋', '1170', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_167', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.556634', '1', '2024-03-05 09:05:20.556634', '1', 1, '320213', NULL, '1', '0101000020B01100000780F127BB538341B8E908C407AA4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏类型:其他,违规占用', '167', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_168', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.560249', '1', '2024-03-05 09:05:20.560249', '1', 1, '320213', NULL, '1', '0101000020B011000074C336AAC852834191E524F0F29E4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:轻,局部轻微', '168', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10271', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.564187', '1', '2024-03-05 09:05:20.564187', '1', 1, '320213', NULL, '1', '0101000020B01100009261159CD453834124D74DF731A84A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏程度:轻,南丰桥由南向北,由北向南双向伸缩缝垃圾堵塞', '10271', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10272', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.567865', '1', '2024-03-05 09:05:20.567865', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏类型:破损,道板砖破损一块,松动一块', '10272', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10273', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.571669', '1', '2024-03-05 09:05:20.571669', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-11 00:00:00', NULL, '损坏程度:中,防撞墙网裂', '10273', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10274', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.575942', '1', '2024-03-05 09:05:20.575942', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏位置:金城东路高架桥(2)由西向东37#墩柱处,墩柱脏污', '10274', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10275', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.580117', '1', '2024-03-05 09:05:20.580117', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,瓜市桥由东向西,桥面道板砖破损一块', '10275', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10276', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.584418', '1', '2024-03-05 09:05:20.584418', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,外立面破损', '10276', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10277', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.588263', '1', '2024-03-05 09:05:20.588263', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:其他,沥青坑塘,约一个平方', '10277', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10278', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.592353', '1', '2024-03-05 09:05:20.592353', '1', 1, '320213', NULL, '1', '0101000020B0110000E8698725175383416FC6BEEE20B14A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏类型:破损,落水管破损', '10278', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10280', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.596135', '1', '2024-03-05 09:05:20.596135', '1', 1, '320213', NULL, '1', '0101000020B01100005C6DC5CE8F538341D9E7F8A6C3A04A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏类型:破损,平石破损', '10280', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10281', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.599961', '1', '2024-03-05 09:05:20.599961', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:凤翔立交ES匝道由东往南9#伸缩缝处,防护钢板变形', '10281', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10282', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.603635', '1', '2024-03-05 09:05:20.603635', '1', 1, '320213', NULL, '1', '0101000020B01100009C8FEBA333538341CC1682AA6E8D4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾', '10282', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1174', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.607254', '1', '2024-03-05 09:05:20.607254', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:中,落水管缺失', '1174', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_162', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.610927', '1', '2024-03-05 09:05:20.610927', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:损坏,道板松动', '162', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10283', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.61474', '1', '2024-03-05 09:05:20.61474', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-11-19 00:00:00', NULL, '损坏类型:其他,泄水井盖缺失3只', '10283', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10284', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.618388', '1', '2024-03-05 09:05:20.618388', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10284', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10285', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.622004', '1', '2024-03-05 09:05:20.622004', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-11-05 00:00:00', NULL, '损坏类型:其他,桥下有垃圾易燃物', '10285', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10286', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.625796', '1', '2024-03-05 09:05:20.625796', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏位置:金城路立交兴源路主线LD144南向北10米处,沥青坑塘,损伤面积约一个平方', '10286', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10287', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.629256', '1', '2024-03-05 09:05:20.629256', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-09-03 00:00:00', NULL, '损坏位置:凤翔路高架由北向南115#墩柱伸缩缝,物体有掉落隐患', '10287', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10288', '5', '安全-安全防护设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.632987', '1', '2024-03-05 09:05:20.632987', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2022-01-01 00:00:00', NULL, '桥梁实测临空高度8.0m、水深2.0m,人行道宽度1.8m,桥下为公园人员密集区。车行道外侧采用路缘石和人行道分隔,机动车道侧路缘石高度35cm。不满足《城市桥梁设计规范》(CJJ-2011)中“临空高度大于6.0m或水深大于5.0m、跨越人员密集区,车行道外侧必须设置防撞护栏”的要求。\n本桥跨越北塘大街,按要求设置了警告和界限标志,但未设置防撞设施。\n本桥为双向六车道,中间带设置了0.935m高的中央分隔栏,不满足《城市道路交通设施设计规范》(GB50688 2011)中“双向六车道及以上道路,当无中央分隔带且不设防撞护栏时,应在中间带设分隔栏杆,栏杆净高不低于1.1m”的要求,且该桥机动车道和非机动车道为一幅路设计,未设置机动车道和非机动车道分隔栏,不满足《城市道路交通设施设计规范》(GB50688 2011)中“双向四车道及以上的道路,机动车道与非机动车道为一幅路设计,应在机动车道和非机动车道之间设置分隔栏杆”的要求。', '10288', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1199', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.636884', '1', '2024-03-05 09:05:20.636884', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏程度:重,一处沥青坑塘,一处路平石起拱', '1199', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1200', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.640646', '1', '2024-03-05 09:05:20.640646', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏程度:中,锚固区破损有坑', '1200', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1201', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.644551', '1', '2024-03-05 09:05:20.644551', '1', 1, '320213', NULL, '1', '0101000020B0110000876481C8FE528341CBD5C824E8AE4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏位置:凤翔路高架U2匝道2#伸缩缝处,防撞墙有裂缝', '1201', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1202', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.648575', '1', '2024-03-05 09:05:20.648575', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏程度:轻,桥面砖有异物', '1202', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1204', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.65241', '1', '2024-03-05 09:05:20.65241', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏位置:瓜市桥由西向东,桥面道板砖缺失一块,开裂四块,瓜市桥由西向东,桥面道板砖缺失一块,开裂四块', '1204', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1206', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.656595', '1', '2024-03-05 09:05:20.656595', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏类型:破损,道板砖破损', '1206', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1210', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.660367', '1', '2024-03-05 09:05:20.660367', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:中,栏杆油漆剥落', '1210', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_506', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.664249', '1', '2024-03-05 09:05:20.664249', '1', 1, '320213', NULL, '1', '0101000020B01100003DDB5C770B538341D5B9303850B24A41', NULL, NULL, '2023-09-24 00:00:00', NULL, '损坏类型:其他,道板砖松动', '506', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1196', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.667876', '1', '2024-03-05 09:05:20.667876', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏程度:轻,防护钢板缺失', '1196', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1197', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.671542', '1', '2024-03-05 09:05:20.671542', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏位置:凤翔立交WN匝道由西往北12#墩柱处,落水管脱落', '1197', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1198', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.67523', '1', '2024-03-05 09:05:20.67523', '1', 1, '320213', NULL, '1', '0101000020B011000030FA0A7515538341B1A0F7E8C5B04A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '1198', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1131', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.679177', '1', '2024-03-05 09:05:20.679177', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-19 00:00:00', NULL, '损坏程度:轻,江海路人行天桥上方跨路段,桥面大理石砖翘起松动两块', '1131', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_41', '5', '安全-安全防护设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.683424', '1', '2024-03-05 09:05:20.683424', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2022-01-01 00:00:00', NULL, '桥梁实测临空高度8.0m、水深2.0m,人行道宽度1.8m,桥下为公园人员密集区。车行道外侧采用路缘石和人行道分隔,机动车道侧路缘石高度35cm。不满足《城市桥梁设计规范》(CJJ-2011)中“临空高度大于6.0m或水深大于5.0m、跨越人员密集区,车行道外侧必须设置防撞护栏”的要求。
- 本桥跨越北塘大街,按要求设置了警告和界限标志,但未设置防撞设施。
- 本桥为双向六车道,中间带设置了0.935m高的中央分隔栏,不满足《城市道路交通设施设计规范》(GB50688 2011)中“双向六车道及以上道路,当无中央分隔带且不设防撞护栏时,应在中间带设分隔栏杆,栏杆净高不低于1.1m”的要求,且该桥机动车道和非机动车道为一幅路设计,未设置机动车道和非机动车道分隔栏,不满足《城市道路交通设施设计规范》(GB50688 2011)中“双向四车道及以上的道路,机动车道与非机动车道为一幅路设计,应在机动车道和非机动车道之间设置分隔栏杆”的要求。', '41', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10289', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.687862', '1', '2024-03-05 09:05:20.687862', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西24#伸缩缝处,沥青坑塘,损伤面积约一个平方', '10289', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10291', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.69199', '1', '2024-03-05 09:05:20.69199', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:劝学桥南向北,桥面砖松动破碎三块', '10291', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10292', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.696118', '1', '2024-03-05 09:05:20.696118', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:轻,局部轻微', '10292', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10293', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.700233', '1', '2024-03-05 09:05:20.700233', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:轻,桥面砖松动二块', '10293', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10294', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.704356', '1', '2024-03-05 09:05:20.704356', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-23 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块,松动一块', '10294', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10381', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.708236', '1', '2024-03-05 09:05:20.708236', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10381', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10295', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.712126', '1', '2024-03-05 09:05:20.712126', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏位置:由南往北第一条伸缩缝往北五米处,机动车道沥青路面横向裂缝一条3m,修补处磨损(30cm*30cm),局部轻微', '10295', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10296', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.716043', '1', '2024-03-05 09:05:20.716043', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约一个平方', '10296', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10297', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.720419', '1', '2024-03-05 09:05:20.720419', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺损一块(19cm*19cm),局部轻微', '10297', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10298', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.72409', '1', '2024-03-05 09:05:20.72409', '1', 1, '320213', NULL, '1', '0101000020B0110000655D1CB787538341B60303A4F8B44A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:重,沥青坑塘(边车道)', '10298', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10299', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.727912', '1', '2024-03-05 09:05:20.727912', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,由北往南人行道道板砖缺损一块', '10299', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10300', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.731999', '1', '2024-03-05 09:05:20.731999', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏类型:破损,侧石破损', '10300', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10301', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.736282', '1', '2024-03-05 09:05:20.736282', '1', 1, '320213', NULL, '1', '0101000020B0110000199D3A90A053834107A3042DB9AB4A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:靖海桥由南向北,近2#伸缩缝处,路缘石开裂破损一处,靖海桥由南向北,近2#伸缩缝处,路缘石开裂破损一处', '10301', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10302', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.739855', '1', '2024-03-05 09:05:20.739855', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-12-11 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10302', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10303', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.743549', '1', '2024-03-05 09:05:20.743549', '1', 1, '320213', NULL, '1', '0101000020B01100002B00C67CB55283414CDFF9D9EBA54A41', NULL, NULL, '2023-12-09 00:00:00', NULL, '损坏程度:轻,局部轻微', '10303', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10304', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.747263', '1', '2024-03-05 09:05:20.747263', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '10304', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10305', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.751126', '1', '2024-03-05 09:05:20.751126', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-02-15 00:00:00', NULL, '从现场的检测数据来看,所抽检的构件中钢筋保护层评定标度为“1”的有\n无锡市 2021 年市管桥梁结构定期检测项目(三标段)清宁大桥结构定期检测报告\n报告编号:0226220248\n苏交科集团检测认证有限公司 第 127 页 共 131 页\n19 个,说明其对结构钢筋耐久性影响不显著;评定标度为“2”的有 18 个,说明其对结构钢筋耐久性\n有轻度影响;评定标度为“3”的有 3 个,说明其对结构钢筋耐久性有影响。', '10305', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10306', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.755275', '1', '2024-03-05 09:05:20.755275', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10306', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10307', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.759031', '1', '2024-03-05 09:05:20.759031', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏类型:破损,泄水井盖破损一只', '10307', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10308', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.763058', '1', '2024-03-05 09:05:20.763058', '1', 1, '320213', NULL, '1', '0101000020B0110000A95357046B538341183A213651A44A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,大理石破损', '10308', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10309', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.766924', '1', '2024-03-05 09:05:20.766924', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10309', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10310', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.771265', '1', '2024-03-05 09:05:20.771265', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏类型:破损,侧石破损', '10310', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10311', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.775005', '1', '2024-03-05 09:05:20.775005', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏类型:损坏,南侧人行道瓷砖破损', '10311', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10312', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.779483', '1', '2024-03-05 09:05:20.779483', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,勤丰桥由西向东,伸缩缝垃圾堵塞', '10312', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10313', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.783319', '1', '2024-03-05 09:05:20.783319', '1', 1, '320213', NULL, '1', '0101000020B01100009261159CD453834124D74DF731A84A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,南丰桥由南向北,伸缩缝锚固区开裂一处', '10313', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10314', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.787096', '1', '2024-03-05 09:05:20.787096', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏位置:瞻江立交EN匝道由东往北8#伸缩缝,泄水井盖缺失1只', '10314', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10315', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.79087', '1', '2024-03-05 09:05:20.79087', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-09 00:00:00', NULL, '损坏位置:金城路高架(贡湖大道跨线桥)由西向东55#与56#伸缩缝处,防撞墙开裂2与防撞墙被剐蹭约3㎡', '10315', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10316', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.794779', '1', '2024-03-05 09:05:20.794779', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-07-08 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道,道板砖缺失11块', '10316', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10317', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.798504', '1', '2024-03-05 09:05:20.798504', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-07-06 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失五块', '10317', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10318', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.802389', '1', '2024-03-05 09:05:20.802389', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏类型:破损,道板破损', '10318', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10319', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.806748', '1', '2024-03-05 09:05:20.806748', '1', 1, '320213', NULL, '1', '0101000020B011000001CB4AFC80528341F3FA051144A44A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏程度:轻,多处露筋', '10319', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10320', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.810806', '1', '2024-03-05 09:05:20.810806', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损(第一车道)', '10320', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10321', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.81458', '1', '2024-03-05 09:05:20.81458', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:轻,桥面砖缺失二处二块', '10321', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10322', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.818644', '1', '2024-03-05 09:05:20.818644', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖破碎损坏七块', '10322', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10323', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.822634', '1', '2024-03-05 09:05:20.822634', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-10-02 00:00:00', NULL, '损坏程度:轻,局部轻微', '10323', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10324', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.826656', '1', '2024-03-05 09:05:20.826656', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:唐祥桥由北向南人行道处,道板砖缺失一块', '10324', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10325', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.830653', '1', '2024-03-05 09:05:20.830653', '1', 1, '320213', NULL, '1', '0101000020B0110000437918DD275383410AE09F4646A54A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏程度:轻,填塞', '10325', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10326', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.834726', '1', '2024-03-05 09:05:20.834726', '1', 1, '320213', NULL, '1', '0101000020B0110000B4C4439974538341EA54A40864A24A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,局部轻微', '10326', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10589', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.838586', '1', '2024-03-05 09:05:20.838586', '1', 1, '320213', NULL, '1', '0101000020B011000006642F3C265383419EEC119C64A94A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏程度:轻,道板松动', '10589', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10590', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.842516', '1', '2024-03-05 09:05:20.842516', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏类型:破损,桥面砖破损六块', '10590', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10591', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.846228', '1', '2024-03-05 09:05:20.846228', '1', 1, '320213', NULL, '1', '0101000020B01100004C54AF92CF538341D7A337D864AB4A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '10591', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10327', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.850043', '1', '2024-03-05 09:05:20.850043', '1', 1, '320213', NULL, '1', '0101000020B0110000B8E438CABC528341F62AA42C04B14A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏位置:揽翠桥西侧人行道,桥面人行道瓷砖损坏丢失', '10327', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10328', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.85372', '1', '2024-03-05 09:05:20.85372', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-11-05 00:00:00', NULL, '损坏类型:破损,道板砖缺失2块破损1块', '10328', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10329', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.857507', '1', '2024-03-05 09:05:20.857507', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏类型:其他,限载牌有污渍', '10329', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10330', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.861211', '1', '2024-03-05 09:05:20.861211', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-10-20 00:00:00', NULL, '①4#墩锈胀露筋,面积 0.20m 2。 ②支座未见明显病害。 ', '10330', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10331', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.865261', '1', '2024-03-05 09:05:20.865261', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-09-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10331', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10332', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.869139', '1', '2024-03-05 09:05:20.869139', '1', 1, '320213', NULL, '1', '0101000020B01100003783C6E28B54834192F19ACD4EA64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,左右两侧防撞墙墙体刮蹭', '10332', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10333', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.873007', '1', '2024-03-05 09:05:20.873007', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,劝学桥由南向北,桥面大理石砖松动开裂翘起一块', '10333', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10334', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.87697', '1', '2024-03-05 09:05:20.87697', '1', 1, '320213', NULL, '1', '0101000020B01100005C6DC5CE8F538341D9E7F8A6C3A04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,两侧平石破碎', '10334', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10335', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.880911', '1', '2024-03-05 09:05:20.880911', '1', 1, '320213', NULL, '1', '0101000020B0110000A518A7078652834150363AE1E1B24A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏类型:破损,防撞墙开裂破损,损伤长度约80cm', '10335', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10336', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.885054', '1', '2024-03-05 09:05:20.885054', '1', 1, '320213', NULL, '1', '0101000020B01100009C8FEBA333538341CC1682AA6E8D4A41', NULL, NULL, '2023-08-26 00:00:00', NULL, '损坏位置:方湖桥东往西,桥面砖缺失一块', '10336', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10337', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.888935', '1', '2024-03-05 09:05:20.888935', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:景渎立交E匝道由北向东4#伸缩缝处,防撞墙被剐蹭,损伤面积约2个平方', '10337', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10338', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.892606', '1', '2024-03-05 09:05:20.892606', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:劝学桥南向北,桥面砖破损一块', '10338', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10339', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.896554', '1', '2024-03-05 09:05:20.896554', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏程度:轻,桥面砖破碎松动二块', '10339', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10340', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.900057', '1', '2024-03-05 09:05:20.900057', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '损坏程度:轻,墩柱脏污', '10340', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10341', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.903821', '1', '2024-03-05 09:05:20.903821', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,约40cm', '10341', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10342', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.907552', '1', '2024-03-05 09:05:20.907552', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏程度:轻,桥面砖破碎翘起10块', '10342', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10343', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.911264', '1', '2024-03-05 09:05:20.911264', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏程度:中,道板砖缺失6块', '10343', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10344', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.915718', '1', '2024-03-05 09:05:20.915718', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏位置:梁溪路下穿通道桥由北向南人行道起点处,栏杆底座破损', '10344', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10345', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.919371', '1', '2024-03-05 09:05:20.919371', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '10345', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_837', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.923166', '1', '2024-03-05 09:05:20.923166', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏位置:金城东路高架桥(2)由西向东37#墩柱处,墩柱脏污', '837', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10346', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.926917', '1', '2024-03-05 09:05:20.926917', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE129B3155383416130B8DCD9A74A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:由东往西第三条伸缩缝东侧,左侧机动车道沥青路面修补处破损露筋(30,局部轻微', '10346', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10347', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.930566', '1', '2024-03-05 09:05:20.930566', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏位置:钱荣路高架由南向北LD033处,沥青拥包,损伤面积约三个平方', '10347', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10348', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.93465', '1', '2024-03-05 09:05:20.93465', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏程度:轻,伸缩缝堵塞', '10348', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10349', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.938653', '1', '2024-03-05 09:05:20.938653', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,不明线组悬挂', '10349', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10350', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.942268', '1', '2024-03-05 09:05:20.942268', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏类型:其他,广北大桥由西向东,桥面大理石砖翘起五块', '10350', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10351', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.946117', '1', '2024-03-05 09:05:20.946117', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10351', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10352', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.949985', '1', '2024-03-05 09:05:20.949985', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10352', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10353', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.953845', '1', '2024-03-05 09:05:20.953845', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10353', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10354', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.957889', '1', '2024-03-05 09:05:20.957889', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:中,伸缩缝钢板翘起,防撞墙混凝土破损', '10354', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10355', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.961522', '1', '2024-03-05 09:05:20.961522', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:重,沥青坑塘,损伤面积约3个平方', '10355', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10356', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.96523', '1', '2024-03-05 09:05:20.96523', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,桥栏杆下方大理石砖松动翘起一块', '10356', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10357', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.969271', '1', '2024-03-05 09:05:20.969271', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏位置:江海路高架由东向西28#墩柱处,落水管破损,橡胶止水带破损', '10357', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10382', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.973387', '1', '2024-03-05 09:05:20.973387', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)箱梁外底板 1 条纵向裂缝(L=0.6m)、6 处\n渗水析白(S 总=0.80m2)、6 处露筋锈蚀(L 总=0.75m)、2 处破损露筋锈蚀(L 总=0.3m,S 总=0.21\nm2)、5 处麻面露筋锈蚀(L 总=0.9m,S 总=0.7m2)、1 处夹杂(S=0.48m2);(2)箱室外腹板 4\n处渗水析白(S 总=0.76m2)、1 处蜂窝(S=0.14m2),1 处胀裂露筋锈蚀(L=0.2m)、1 处渗水痕\n迹;(3)箱室外翼板 8 处析白(S 总=0.09m2)、1 处破损(S=0.01m2)、3 处胀裂露筋锈蚀(L 总=\n0.2m,S 总=0.03m2);(4)箱室内顶板 1 条横向裂缝(L=2.5m)、45 条纵向裂缝(L 总=60.1\nm)、3 条斜向裂缝(L 总=1.4m)、10 处渗水析白(S 总=0.28m2);(5)箱室内腹板 2 处渗水析\n白(S 总=0.23m2);(6)箱室内齿板 5 处麻面(L 总=0.2m,S 总=0.43m2)、1 处空洞露筋锈蚀(L\n=0.1m,S=0.01m2)、1 处渗水析白(S=0.02m2);(7)箱室内横隔板 5 条横向裂缝(L 总=3.8\nm)、23 条竖向裂缝(L 总=18.64m)、14 条斜向裂缝(L 总=14.3m)。', '10382', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10383', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.977193', '1', '2024-03-05 09:05:20.977193', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏类型:其他,伸缩缝防护钢板变形', '10383', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10384', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.98075', '1', '2024-03-05 09:05:20.98075', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏程度:轻,局部轻微', '10384', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10385', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.984823', '1', '2024-03-05 09:05:20.984823', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏类型:破损,广瑞桥由东向西,桥面道板砖破损一块', '10385', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10386', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.98905', '1', '2024-03-05 09:05:20.98905', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '(1)桥面铺装:左侧非机动车道在0#台接坡处横向开裂,L=1.50m;右侧非机动车道在0#台处凹陷,A=9.00 m2;全桥非机动车道沥青层普遍存在剥落现象;\n(2)伸缩缝:伸缩缝普遍堵塞,1#伸缩缝在左侧机动车道处缝宽异常,D=7mm,伸缩缝止水带破损2处,L总=11.00m;\n(3)栏杆:露筋锈蚀26处,L总=5.00m,锈胀开裂1处,A总=1.80 m2。\n(4)人行梯道:桥面饰面砖及护栏均无明显病害。', '10386', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10387', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.993744', '1', '2024-03-05 09:05:20.993744', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10387', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10388', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:20.997559', '1', '2024-03-05 09:05:20.997559', '1', 1, '320213', NULL, '1', '0101000020B011000069CA15B249538341C08C7E1E93A24A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏位置:,局部轻微', '10388', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10389', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.001453', '1', '2024-03-05 09:05:21.001453', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-08-06 00:00:00', NULL, '损坏类型:其他,广北大桥由西向东,伸缩缝垃圾堵塞', '10389', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10390', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.005393', '1', '2024-03-05 09:05:21.005393', '1', 1, '320213', NULL, '1', '0101000020B0110000F25E3527BB53834173C6BE5207AA4A41', NULL, NULL, '2023-08-05 00:00:00', NULL, '损坏类型:其他,划痕', '10390', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10391', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.009776', '1', '2024-03-05 09:05:21.009776', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-07-03 00:00:00', NULL, '损坏程度:重,防护钢板翘起', '10391', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10392', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.013846', '1', '2024-03-05 09:05:21.013846', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏位置:钱荣路高架由南向北起点处,两条沥青裂缝', '10392', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10393', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.017672', '1', '2024-03-05 09:05:21.017672', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:重,沥青坑塘,面积约两个平方', '10393', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10394', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.021522', '1', '2024-03-05 09:05:21.021522', '1', 1, '320213', NULL, '1', '0101000020B01100003C3F8C7E9952834176880D745CA54A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏位置:南侧桥头人行道LD029环氧覆层破损一处,局部轻微', '10394', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10395', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.025325', '1', '2024-03-05 09:05:21.025325', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏程度:轻,底座装饰板缺失', '10395', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10396', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.029499', '1', '2024-03-05 09:05:21.029499', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏类型:损坏,道板破损', '10396', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10397', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.033075', '1', '2024-03-05 09:05:21.033075', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,局部轻微', '10397', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10398', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.037404', '1', '2024-03-05 09:05:21.037404', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:江海路人行天桥由南向北,人行天桥楼梯左侧防撞设施混凝土剥落一处,江海路人行天桥由南向北,人行天桥楼梯左侧防撞设施混凝土剥落一处', '10398', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10399', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.041174', '1', '2024-03-05 09:05:21.041174', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10399', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10400', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.045736', '1', '2024-03-05 09:05:21.045736', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2023-12-03 00:00:00', NULL, '损坏位置:由东往西桥名牌旁机动车道沥青路面破损露筋一处,局部轻微', '10400', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10401', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.049445', '1', '2024-03-05 09:05:21.049445', '1', 1, '320213', NULL, '1', '0101000020B0110000B9BC804DF0528341D1F84C563DAF4A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:人行道,盲道破损', '10401', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10402', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.053061', '1', '2024-03-05 09:05:21.053061', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏程度:轻,局部轻微', '10402', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10403', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.056713', '1', '2024-03-05 09:05:21.056713', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏位置:桥下东侧行车道,防撞模板损坏', '10403', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10404', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.060291', '1', '2024-03-05 09:05:21.060291', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏位置:景渎立交E匝道由北向东3#至4#伸缩缝之间,防撞墙被剐蹭,损伤面积约三个平方', '10404', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10407', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.063945', '1', '2024-03-05 09:05:21.063945', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:其他,有污渍', '10407', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10408', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.067611', '1', '2024-03-05 09:05:21.067611', '1', 1, '320213', NULL, '1', '0101000020B0110000F1F87DDC11538341423C67C581AC4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:由东往西下匝道口机动车道沥青路面拥包(1.5m*30cm),局部轻微', '10408', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10409', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.071168', '1', '2024-03-05 09:05:21.071168', '1', 1, '320213', NULL, '1', '0101000020B01100002D35BB4B5F538341709E78CA1AA24A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏位置:由北向南,大理石松动', '10409', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10410', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.075016', '1', '2024-03-05 09:05:21.075016', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏类型:破损,人行道砖破损', '10410', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10411', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.079012', '1', '2024-03-05 09:05:21.079012', '1', 1, '320213', NULL, '1', '0101000020B0110000DF6C337EBC53834166ABCB5921A04A41', NULL, NULL, '2023-06-21 00:00:00', NULL, '损坏位置:永旺大桥由西向东运河西路 中间车道型钢松动 车辆过抖动,型钢松动', '10411', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10446', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.082801', '1', '2024-03-05 09:05:21.082801', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖松动二块', '10446', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10412', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.086592', '1', '2024-03-05 09:05:21.086592', '1', 1, '320213', NULL, '1', '0101000020B0110000FA37614597538341410A493CD6AF4A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:锡虞立交EN匝道由东往北LD004处,防撞墙被剐蹭,损伤面积约1个平方', '10412', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10413', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.090383', '1', '2024-03-05 09:05:21.090383', '1', 1, '320213', NULL, '1', '0101000020B0110000F2C2648A975383415533320ECBAF4A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏程度:轻,防撞墙被剐蹭,损伤面积约3个平方', '10413', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10414', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.094254', '1', '2024-03-05 09:05:21.094254', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2020-12-31 00:00:00', NULL, '①墩顶 2 处装饰板破损,5 处胀裂露筋锈蚀,L=0.4m,面积 0.32m\n²,1 处涂层剥落。', '10414', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10415', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.097893', '1', '2024-03-05 09:05:21.097893', '1', 1, '320213', NULL, '1', '0101000020B01100005EC94E9D53538341F2FC699908AE4A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:轻,人行道瓷砖破损丢失', '10415', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10416', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.101437', '1', '2024-03-05 09:05:21.101437', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏位置:江海西路高架01标由西向东S0匝道口,防撞墙被剐蹭', '10416', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10417', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.105137', '1', '2024-03-05 09:05:21.105137', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:长广溪桥西往东,限载牌弯曲变形', '10417', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10418', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.108876', '1', '2024-03-05 09:05:21.108876', '1', 1, '320213', NULL, '1', '0101000020B0110000AA79872FBB538341AC51814108AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏位置:0#台左翼梁板,露筋', '10418', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10419', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.112718', '1', '2024-03-05 09:05:21.112718', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏类型:其他,两处墙漆脱落', '10419', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10478', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.352088', '1', '2024-03-05 09:05:21.352088', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '10478', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10420', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.116309', '1', '2024-03-05 09:05:21.116309', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2019-11-25 00:00:00', NULL, '箱梁存在 1 条横向裂缝,长度 0.6m;1 条纵向裂缝,长度 3.6m;3 处修补处二次开裂。箱梁共存在 3 处麻面,总面积为 3.00m2;1 处混凝土破损,面积 0.01m2;1 处锈胀露筋,面积 0.02m2;1 处钢筋外露,面积 0.04m2。 ', '10420', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_600', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.119949', '1', '2024-03-05 09:05:21.119949', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏位置:景渎立交(金城路高架)由东向西5#伸缩缝处,沥青网裂,损伤面积约三个平方', '600', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10421', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.123616', '1', '2024-03-05 09:05:21.123616', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约1个平方', '10421', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10422', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.127247', '1', '2024-03-05 09:05:21.127247', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:扬名三号浜桥由南向北道板破损,扬名三号浜桥由南向北道板破损', '10422', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10423', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.130922', '1', '2024-03-05 09:05:21.130922', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏类型:其他,沥青拥包,损伤面积约5个平方', '10423', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10424', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.134653', '1', '2024-03-05 09:05:21.134653', '1', 1, '320213', NULL, '1', '0101000020B0110000C0B605A6FE538341479319A3999C4A41', NULL, NULL, '2023-08-19 00:00:00', NULL, '损坏位置:栏杆基础,贴面脱落', '10424', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10425', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.138532', '1', '2024-03-05 09:05:21.138532', '1', 1, '320213', NULL, '1', '0101000020B0110000848B152A88538341A3AD836B57A24A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏程度:轻,路名牌表面污渍', '10425', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10426', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.142629', '1', '2024-03-05 09:05:21.142629', '1', 1, '320213', NULL, '1', '0101000020B01100005260C86610548341446E86B9C4A94A41', NULL, NULL, '2023-08-13 00:00:00', NULL, '损坏程度:中,落水管缺失', '10426', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10427', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.146514', '1', '2024-03-05 09:05:21.146514', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏位置:金城快速路 由东往西312南京方向出口往前100米处右侧(近景云立交),井盖丢失', '10427', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10428', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.150395', '1', '2024-03-05 09:05:21.150395', '1', 1, '320213', NULL, '1', '0101000020B0110000C5E0E8DE0553834117F5822F54AF4A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏位置:凤翔路高架U4匝道由南向北起点处右侧,侧平石拱起,面积约一个平方', '10428', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10429', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.154126', '1', '2024-03-05 09:05:21.154126', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '10429', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10430', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.158005', '1', '2024-03-05 09:05:21.158005', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏类型:其他,江海路人行天桥由北向南,非机动车道转弯处,桥栏杆下方大理石砖错位两块', '10430', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10431', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.162036', '1', '2024-03-05 09:05:21.162036', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏位置:金城路立交G匝道2#伸缩缝由西向东10米处两侧,防撞墙开裂破损,损伤面积约一个平方', '10431', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10432', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.166263', '1', '2024-03-05 09:05:21.166263', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏类型:破损,瓜市桥由西向东,桥面盲道砖开裂破损四块', '10432', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10433', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.170501', '1', '2024-03-05 09:05:21.170501', '1', 1, '320213', NULL, '1', '0101000020B0110000848B152A88538341A3AD836B57A24A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏类型:破损,广场砖松动', '10433', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10434', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.174313', '1', '2024-03-05 09:05:21.174313', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏程度:轻,路缘石大理石脱落一块破损一块翘起一块', '10434', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_619', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.177896', '1', '2024-03-05 09:05:21.177896', '1', 1, '320213', NULL, '1', '0101000020B0110000A9B14BD1DE5283418AA300F97CF14A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏类型:破损,靠背破损', '619', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10435', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.184249', '1', '2024-03-05 09:05:21.184249', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏类型:其他,伸缩缝内有垃圾', '10435', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10436', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.18797', '1', '2024-03-05 09:05:21.18797', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-09-27 00:00:00', NULL, '损坏程度:重,防护钢板翘起', '10436', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10437', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.19189', '1', '2024-03-05 09:05:21.19189', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏程度:中,防撞墙4处被剐蹭,损伤面积约两个平方', '10437', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10438', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.195548', '1', '2024-03-05 09:05:21.195548', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-09-17 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,大理石砖松动三块', '10438', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10439', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.199381', '1', '2024-03-05 09:05:21.199381', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏位置:青祁路高架由南向北30墩,落水管破损', '10439', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10440', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.203109', '1', '2024-03-05 09:05:21.203109', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '人行道,局部轻微', '10440', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10441', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.207214', '1', '2024-03-05 09:05:21.207214', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-09-09 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖破损一块', '10441', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10442', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.211273', '1', '2024-03-05 09:05:21.211273', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏程度:中,道板砖缺失3块', '10442', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10443', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.215349', '1', '2024-03-05 09:05:21.215349', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约1个平方', '10443', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10444', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.219381', '1', '2024-03-05 09:05:21.219381', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:利民桥由东向西大理石破损2块,利民桥由东向西大理石破损2块', '10444', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10445', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.223104', '1', '2024-03-05 09:05:21.223104', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏类型:其他,防撞墙网裂,损伤面积约两个平方', '10445', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10447', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.226889', '1', '2024-03-05 09:05:21.226889', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏类型:破损,瓜市桥由西向东桥面道板砖破损一块', '10447', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10448', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.230809', '1', '2024-03-05 09:05:21.230809', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,桥面砖翘起10块', '10448', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10449', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.234665', '1', '2024-03-05 09:05:21.234665', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-11 00:00:00', NULL, '箱梁存在翼缘板 4 条横向裂缝,总长度 7.7m;翼缘板 2 条纵向裂缝,总长度 4.5m;腹板 16 条竖向裂缝,总长度 11.4m;底板 1 条横向裂缝,长度 1.5m;底板 36 条纵向裂缝,总长度 56.2m;底板 1 条斜向裂缝,长度 1.92m。空心板梁底板存在 4 条纵向裂缝,总长度 8.0m。梁底共存在 9 处麻面,总面积 6.80m2;1 处锈胀露筋,面积 0.01m2;8 处露筋,面积 3.49m2;43 处混凝土破损,总面积 4.01m2;5 处渗水析白,总面积 0.26m2;1 处锈胀露筋,面积 0.01m2。', '10449', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10450', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.238416', '1', '2024-03-05 09:05:21.238416', '1', 1, '320213', NULL, '1', '0101000020B01100002BB77491085583414B8787CA6EA54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏类型:其他,限载牌错位', '10450', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10451', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.242377', '1', '2024-03-05 09:05:21.242377', '1', 1, '320213', NULL, '1', '0101000020B011000046BAA682705383410CA4523477B04A41', NULL, NULL, '2023-09-11 00:00:00', NULL, '损坏位置:瞻江立交(江海路高架)由北向南8#伸缩缝处,伸缩缝锚固区破损(第二车道)', '10451', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10452', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.246239', '1', '2024-03-05 09:05:21.246239', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约六个平方', '10452', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10453', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.250007', '1', '2024-03-05 09:05:21.250007', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:张福桥由西向东人行道处,道板砖破损4块', '10453', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10454', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.253872', '1', '2024-03-05 09:05:21.253872', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '10454', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10455', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.257696', '1', '2024-03-05 09:05:21.257696', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏位置:瓜市桥由西向东,桥面道板砖缺失破损三块,瓜市桥由西向东,桥面道板砖缺失破损三块', '10455', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10456', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.262294', '1', '2024-03-05 09:05:21.262294', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏程度:中,落水管缺失', '10456', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10457', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.266141', '1', '2024-03-05 09:05:21.266141', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏类型:损坏,瓜市桥由西向东,桥面道板砖开裂破损一块', '10457', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10458', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.269902', '1', '2024-03-05 09:05:21.269902', '1', 1, '320213', NULL, '1', '0101000020B0110000876481C8FE528341CBD5C824E8AE4A41', NULL, NULL, '2023-07-12 00:00:00', NULL, '损坏位置:凤翔路U2匝道向北7#伸缩缝处,桥面横向裂缝', '10458', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10459', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.274648', '1', '2024-03-05 09:05:21.274648', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有垃圾', '10459', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10460', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.278879', '1', '2024-03-05 09:05:21.278879', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏位置:凤翔路高架由北向南43#伸缩缝处,沥青坑塘二次凹陷', '10460', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10461', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.282799', '1', '2024-03-05 09:05:21.282799', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-06-29 00:00:00', NULL, '损坏类型:其他,锚固区破损', '10461', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10462', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.286929', '1', '2024-03-05 09:05:21.286929', '1', 1, '320213', NULL, '1', '0101000020B01100005F156FAD0B558341F64AAEE054A54A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,右侧防撞墙墙体刮蹭', '10462', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10463', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.291975', '1', '2024-03-05 09:05:21.291975', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏类型:其他,沥青坑塘二次凹陷约两个平方', '10463', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10464', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.29598', '1', '2024-03-05 09:05:21.29598', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏程度:轻,泄水井盖缺失1只且泄水孔堵塞,尺寸:590*270*100', '10464', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10465', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.299997', '1', '2024-03-05 09:05:21.299997', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '10465', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10466', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.30421', '1', '2024-03-05 09:05:21.30421', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:破损,通裕桥由南向北,桥面道板砖开裂破损三块', '10466', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10467', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.308452', '1', '2024-03-05 09:05:21.308452', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏程度:轻,勤丰桥由东向西,桥面道板砖开裂破损两块', '10467', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10468', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.312705', '1', '2024-03-05 09:05:21.312705', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏类型:其他,道板砖破损两块', '10468', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10469', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.316392', '1', '2024-03-05 09:05:21.316392', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏类型:破损,桥面砖松动一块拱起九块', '10469', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10470', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.320342', '1', '2024-03-05 09:05:21.320342', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,泄水井盖破损一只', '10470', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10471', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.324397', '1', '2024-03-05 09:05:21.324397', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '10471', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10472', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.328293', '1', '2024-03-05 09:05:21.328293', '1', 1, '320213', NULL, '1', '0101000020B0110000618E5EFCC8538341028A1FD3DFA24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:加高带破损露筋,局部轻微', '10472', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10473', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.332179', '1', '2024-03-05 09:05:21.332179', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-10-03 00:00:00', NULL, '损坏类型:其他,道板砖缺失6块', '10473', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10474', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.335891', '1', '2024-03-05 09:05:21.335891', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:凤翔路高架由北向南50#伸缩缝处,泄水井盖缺失一块', '10474', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10475', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.340593', '1', '2024-03-05 09:05:21.340593', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '10475', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10476', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.344565', '1', '2024-03-05 09:05:21.344565', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10476', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10477', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.348254', '1', '2024-03-05 09:05:21.348254', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:桥梁伸缩缝,有杂物,需要清理养护', '10477', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10479', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.355818', '1', '2024-03-05 09:05:21.355818', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-09-15 00:00:00', NULL, '损坏类型:破损,道板砖缺失一块,松动一块', '10479', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10480', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.359736', '1', '2024-03-05 09:05:21.359736', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:破损,栏杆倾斜', '10480', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10550', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.363583', '1', '2024-03-05 09:05:21.363583', '1', 1, '320213', NULL, '1', '0101000020B01100009BBA32460D538341B6A1292BA18F4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '10550', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10481', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.368016', '1', '2024-03-05 09:05:21.368016', '1', 1, '320213', NULL, '1', '0101000020B0110000C304AE2D16538341D73E1DA567B14A41', NULL, NULL, '2023-06-20 00:00:00', NULL, '损坏位置:凤翔立交由南往北E匝道口,路平石有坑', '10481', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10482', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.371982', '1', '2024-03-05 09:05:21.371982', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏类型:破损,道板砖破损', '10482', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10483', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.376182', '1', '2024-03-05 09:05:21.376182', '1', 1, '320213', NULL, '1', '0101000020B01100002978D1FDFC528341E61DFC2C519C4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,限载牌弯曲不平整', '10483', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10484', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.380576', '1', '2024-03-05 09:05:21.380576', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10484', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10485', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.384352', '1', '2024-03-05 09:05:21.384352', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10485', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10486', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.388039', '1', '2024-03-05 09:05:21.388039', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:南侧桥头人行道盲道砖缺失一块(15cm*15cm),局部轻微', '10486', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10487', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.391761', '1', '2024-03-05 09:05:21.391761', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏位置:江海立交,桥梁栏杆基础', '10487', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10488', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.398848', '1', '2024-03-05 09:05:21.398848', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)盖梁 5 处渗水痕迹、2 处胀裂露筋锈蚀(L\n总=0.3m,S 总=0.06m2)、2 处网裂(S 总=3.9m2)、1 条竖向裂缝且析白(L=0.6m);(2)立柱 13\n处胀裂露筋锈蚀(L 总=3.6m,S 总=0.36m2)、7 条竖向裂缝(L 总=4.6m)、3 条斜向裂缝(L 总=4.2\nm)。', '10488', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10489', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.402789', '1', '2024-03-05 09:05:21.402789', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏类型:破损,底部外立面装饰板破损', '10489', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10490', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.406757', '1', '2024-03-05 09:05:21.406757', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-10-29 00:00:00', NULL, '损坏位置:通江大道、锡澄路主线上跨桥西向东第一条伸缩缝处,沥青拥包,损失面积约一个平方', '10490', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10491', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.410622', '1', '2024-03-05 09:05:21.410622', '1', 1, '320213', NULL, '1', '0101000020B01100004DC370719E538341929BE1D094AB4A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏类型:破损,外侧防撞墙锈胀露筋,损伤面积约一个平方', '10491', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10492', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.414516', '1', '2024-03-05 09:05:21.414516', '1', 1, '320213', NULL, '1', '0101000020B01100005B785719965383415E32004ABBB04A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏位置:长善桥由西向东,桥面道板砖开裂破损两块,长善桥由西向东,桥面道板砖开裂破损两块', '10492', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10493', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.418981', '1', '2024-03-05 09:05:21.418981', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:阅山桥由南向北人行道处,道板砖缺失2块', '10493', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10494', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.423783', '1', '2024-03-05 09:05:21.423783', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,缺失', '10494', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10523', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.427866', '1', '2024-03-05 09:05:21.427866', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏位置:蠡湖大桥北向南,桥面砖破损一块', '10523', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10495', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.431734', '1', '2024-03-05 09:05:21.431734', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏位置:洪口墩大桥北向南,桥面砖缺失二块', '10495', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10496', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.435614', '1', '2024-03-05 09:05:21.435614', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏位置:金城东路B匝道由西向东落地段,沥青裂缝,长度约为两米', '10496', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10497', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.439316', '1', '2024-03-05 09:05:21.439316', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:轻,西汀桥由东向西,桥面盲道砖破损两块', '10497', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10498', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.443264', '1', '2024-03-05 09:05:21.443264', '1', 1, '320213', NULL, '1', '0101000020B01100004A4E74118E538341C8F528D641AF4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,限载牌变形', '10498', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_665', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.447151', '1', '2024-03-05 09:05:21.447151', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-09-06 00:00:00', NULL, '损坏位置:由东向西,大理石破损', '665', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10499', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.451114', '1', '2024-03-05 09:05:21.451114', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,栏杆底部砂浆脱落', '10499', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10500', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.454807', '1', '2024-03-05 09:05:21.454807', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-18 00:00:00', NULL, '损坏类型:破损,落水管破损', '10500', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10501', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.458517', '1', '2024-03-05 09:05:21.458517', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏位置:运河东路最右车道第一条伸缩缝处,沥青沉陷', '10501', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10502', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.462315', '1', '2024-03-05 09:05:21.462315', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:北侧,桥名牌不清', '10502', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10503', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.466117', '1', '2024-03-05 09:05:21.466117', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏位置:江海西路高架01标由东向西LD289处,伸缩缝防护钢板变形', '10503', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10504', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.469893', '1', '2024-03-05 09:05:21.469893', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾,桥梁东南侧人行道上伸缩缝混凝土搭板一处开裂', '10504', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10505', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.473691', '1', '2024-03-05 09:05:21.473691', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,广北大桥由西向东,桥面大理石砖破损三块', '10505', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10531', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.600272', '1', '2024-03-05 09:05:21.600272', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,损伤长度约200CM', '10531', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10506', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.47775', '1', '2024-03-05 09:05:21.47775', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-06-11 00:00:00', NULL, '损坏位置:凤翔北路高架01标由南向北E3匝道旁,伸缩缝钢板翘起', '10506', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10507', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.481801', '1', '2024-03-05 09:05:21.481801', '1', 1, '320213', NULL, '1', '0101000020B01100007659CC52F95283416A01A19F89AE4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏程度:中,锚固区破损有坑', '10507', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10508', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.486132', '1', '2024-03-05 09:05:21.486132', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏类型:损坏,局部轻微', '10508', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10509', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.48983', '1', '2024-03-05 09:05:21.48983', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '10509', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10510', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.493752', '1', '2024-03-05 09:05:21.493752', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏位置:锡虞立交由西向东LD021向东10米处,沥青坑塘,损伤面积约1个平方', '10510', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10511', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.497856', '1', '2024-03-05 09:05:21.497856', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-09-14 00:00:00', NULL, '损坏类型:其他,道板砖缺失10块', '10511', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10512', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.502242', '1', '2024-03-05 09:05:21.502242', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '10512', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_723', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.506194', '1', '2024-03-05 09:05:21.506194', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-30 00:00:00', NULL, '损坏程度:轻,下水井盖丢失2个', '723', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10513', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.510019', '1', '2024-03-05 09:05:21.510019', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:其他,东风桥由西向东,沥青路面一处拥抱', '10513', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_725', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.513898', '1', '2024-03-05 09:05:21.513898', '1', 1, '320213', NULL, '1', '0101000020B0110000C02194BB3953834165D13BB1B4B54A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏类型:其他,声屏障下封板缺失2块', '725', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10514', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.517889', '1', '2024-03-05 09:05:21.517889', '1', 1, '320213', NULL, '1', '0101000020B01100002789DE7A8C54834198E5EB6649A64A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏程度:轻,防撞墙右侧墙体刮蹭', '10514', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10551', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.521744', '1', '2024-03-05 09:05:21.521744', '1', 1, '320213', NULL, '1', '0101000020B011000007184F989653834193917A7FC1B04A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏程度:轻,积善桥由东向西,1#伸缩缝堵塞', '10551', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_728', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.525354', '1', '2024-03-05 09:05:21.525354', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-29 00:00:00', NULL, '损坏类型:损坏,桥底落水管脱落', '728', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10515', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.529117', '1', '2024-03-05 09:05:21.529117', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '①桥面铺装未见异常。 \n②全桥排水系统泄水孔堵塞。 \n③护栏存在防撞墙锈胀露筋 1 处,面积 0.03m 2。 \n④附属设施电力箱盖缺失 2 处。 \n⑤桥头平顺未见明显异常。 \n⑥伸缩缝未见异常。 ', '10515', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10516', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.53284', '1', '2024-03-05 09:05:21.53284', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏类型:其他,防撞墙被剐蹭,损伤面积约10个平方', '10516', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10517', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.536679', '1', '2024-03-05 09:05:21.536679', '1', 1, '320213', NULL, '1', '0101000020B0110000AA79872FBB538341AC51814108AA4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,测试松动', '10517', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10518', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.540527', '1', '2024-03-05 09:05:21.540527', '1', 1, '320213', NULL, '1', '0101000020B0110000A667B36B4453834178D53C71D9934A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:栏杆底座装饰板,松动破损', '10518', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10519', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.544145', '1', '2024-03-05 09:05:21.544145', '1', 1, '320213', NULL, '1', '0101000020B011000046CFE6D417538341685AD49B18B24A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:凤翔路主线上跨桥由东向西13至12#墩柱中间,落水管脱落', '10519', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10520', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.548023', '1', '2024-03-05 09:05:21.548023', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-08-17 00:00:00', NULL, '损坏程度:中,道板砖开裂破损约20块', '10520', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10521', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.552042', '1', '2024-03-05 09:05:21.552042', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '上部结构,局部轻微', '10521', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10522', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.556043', '1', '2024-03-05 09:05:21.556043', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道处,道板砖缺失两块', '10522', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10524', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.560348', '1', '2024-03-05 09:05:21.560348', '1', 1, '320213', NULL, '1', '0101000020B0110000B7C2BB9216538341C6A145C087B14A41', NULL, NULL, '2023-07-26 00:00:00', NULL, '损坏程度:重,落水管脱落', '10524', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10525', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.564462', '1', '2024-03-05 09:05:21.564462', '1', 1, '320213', NULL, '1', '0101000020B0110000DA373EA330538341BA92E45511AB4A41', NULL, NULL, '2023-07-19 00:00:00', NULL, '损坏位置:进城方向,大理石破损', '10525', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10526', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.568555', '1', '2024-03-05 09:05:21.568555', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝垃圾堵塞', '10526', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_708', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.57249', '1', '2024-03-05 09:05:21.57249', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏位置:锡虞立交NE匝道由北向东第三条伸缩缝处,沥青拥包,损伤面积约三个平方', '708', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10527', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.576537', '1', '2024-03-05 09:05:21.576537', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-09-22 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '10527', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10528', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.58074', '1', '2024-03-05 09:05:21.58074', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏程度:轻,局部轻微', '10528', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10529', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.584689', '1', '2024-03-05 09:05:21.584689', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '①桥面铺装 1 处坑槽,面积为 0.01m2。\n②全桥排水系统通畅,未见异常。\n③护栏存在防撞墙 1 处锈胀露筋,面积为 0.50m2。\n④附属设施全桥电力箱锈蚀、电箱盖缺失。\n⑤桥头平顺未见异常。\n⑥伸缩缝 3 处伸缩缝橡胶止水带通长破损。', '10529', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10530', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.588557', '1', '2024-03-05 09:05:21.588557', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏类型:破损,局部轻微', '10530', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_752', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.592775', '1', '2024-03-05 09:05:21.592775', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,损伤长度约200CM', '752', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_753', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.596582', '1', '2024-03-05 09:05:21.596582', '1', 1, '320213', NULL, '1', '0101000020B011000045DD87A603538341FC3C9B5583984A41', NULL, NULL, '2023-08-24 00:00:00', NULL, '损坏程度:中,起皮剥落,损伤面积约三个平方', '753', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10532', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.604447', '1', '2024-03-05 09:05:21.604447', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-08-10 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '10532', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_741', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.608436', '1', '2024-03-05 09:05:21.608436', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约3个平方', '741', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_745', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.6124', '1', '2024-03-05 09:05:21.6124', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏位置:景渎立交E匝道6#伸缩缝由北向东约30米处,沥青坑塘,损伤面积约两个', '745', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_746', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.616148', '1', '2024-03-05 09:05:21.616148', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:其他,沥青坑塘,损伤面积约一个平方', '746', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_747', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.619924', '1', '2024-03-05 09:05:21.619924', '1', 1, '320213', NULL, '1', '0101000020B0110000EB3F241E3C538341F13E5573AFA84A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏程度:轻,盲道砖缺失1块', '747', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10533', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.624377', '1', '2024-03-05 09:05:21.624377', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '10533', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10534', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.628293', '1', '2024-03-05 09:05:21.628293', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块翘起十块', '10534', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10535', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.632148', '1', '2024-03-05 09:05:21.632148', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:其他,型钢抵死', '10535', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10536', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.636038', '1', '2024-03-05 09:05:21.636038', '1', 1, '320213', NULL, '1', '0101000020B0110000D5DDFC53E6528341A1DB4BD034AD4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏位置:凤翔路高架D1匝道由南向北落地段,防撞墙开裂,损伤面积约两个平方', '10536', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10537', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.639934', '1', '2024-03-05 09:05:21.639934', '1', 1, '320213', NULL, '1', '0101000020B01100005EC94E9D53538341F2FC699908AE4A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏类型:损坏,人行道砖损坏', '10537', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10538', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.645818', '1', '2024-03-05 09:05:21.645818', '1', 1, '320213', NULL, '1', '0101000020B01100001CE1746C4B5383419A8C2A2315A84A41', NULL, NULL, '2023-07-22 00:00:00', NULL, '损坏位置:由西向东上坡处,井盖丢失', '10538', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10539', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.649911', '1', '2024-03-05 09:05:21.649911', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏位置:凤翔北路高架01标W5匝道口,伸缩缝防护钢板翘起', '10539', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_72', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.65377', '1', '2024-03-05 09:05:21.65377', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2019-11-25 00:00:00', NULL, '①桥面铺装未见异常。
- ②排水系统泄水孔雨篦缺失 1 处;3#墩落水管抱箍损坏 1 处。
- ③护栏存在防撞墙 5 处锈胀露筋,总面积 6.04m2。
- ④附属设施电力箱锈蚀、电箱盖缺失 1 处。
- ⑤桥头平顺未见异常。
- ⑥伸缩缝未见异常。', '72', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10540', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.657674', '1', '2024-03-05 09:05:21.657674', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:凤翔路高架由南向北LD030至E1匝道口处,5处防护钢板缺失', '10540', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10541', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.661875', '1', '2024-03-05 09:05:21.661875', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-13 00:00:00', NULL, '损坏位置:金城路高架(清扬路跨线桥)由西向东43#伸缩缝处,防护钢板翘起', '10541', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10542', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.665615', '1', '2024-03-05 09:05:21.665615', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:学府立交由南向北LD011处,防撞墙被剐蹭,损伤面积约一个平方', '10542', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10543', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.669456', '1', '2024-03-05 09:05:21.669456', '1', 1, '320213', NULL, '1', '0101000020B0110000BBE3941B715383413BF625A737A24A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏位置:金城路高架上匝道桥由西向东1#伸缩缝处,沥青拥包,损伤面积约2个平方', '10543', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10544', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.673235', '1', '2024-03-05 09:05:21.673235', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-04 00:00:00', NULL, '损坏程度:轻,侧面砖松动四处', '10544', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10545', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.677091', '1', '2024-03-05 09:05:21.677091', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-06-30 00:00:00', NULL, '损坏位置:姚湾立交A匝道由北向东起点处,防撞墙被剐蹭,损伤面积约三个平方', '10545', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10546', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.680769', '1', '2024-03-05 09:05:21.680769', '1', 1, '320213', NULL, '1', '0101000020B01100001CF5501032538341534D9E7C37AA4A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:轻,侧石破损', '10546', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10547', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.684685', '1', '2024-03-05 09:05:21.684685', '1', 1, '320213', NULL, '1', '0101000020B0110000DA373EA330538341BA92E45511AB4A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏位置:进城方向,大理石破损', '10547', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10549', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.688776', '1', '2024-03-05 09:05:21.688776', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-12-02 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭(左右两侧防撞墙皆有),损伤面积约六个平方', '10549', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10552', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.69273', '1', '2024-03-05 09:05:21.69273', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏类型:损坏,瓜市桥由西向东,桥面道板砖破损一块', '10552', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_757', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.696794', '1', '2024-03-05 09:05:21.696794', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:劝学桥南向北,桥面砖破损一块', '757', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_758', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.700703', '1', '2024-03-05 09:05:21.700703', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:瞻江立交(通江大道主线)由北向南3#伸缩缝处,型钢松动异响', '758', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10553', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.704653', '1', '2024-03-05 09:05:21.704653', '1', 1, '320213', NULL, '1', '0101000020B01100004A3CA0CEB75383415BB6481221A64A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏程度:轻,平石破损', '10553', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10554', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.708522', '1', '2024-03-05 09:05:21.708522', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏位置:南侧桥头,南侧桥头桥名牌往南五米,人行道道板砖拱起松动十块(每块19cm*19cm)', '10554', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_759', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.71243', '1', '2024-03-05 09:05:21.71243', '1', 1, '320213', NULL, '1', '0101000020B011000046CFE6D417538341685AD49B18B24A41', NULL, NULL, '2023-08-23 00:00:00', NULL, '损坏位置:凤翔路主线上跨桥由东向西13至12#墩柱中间,落水管脱落', '759', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_760', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.716203', '1', '2024-03-05 09:05:21.716203', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:道板破损,局部轻微', '760', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_255', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.719802', '1', '2024-03-05 09:05:21.719802', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏程度:轻,局部轻微', '255', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_840', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.723932', '1', '2024-03-05 09:05:21.723932', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:破损,广北大桥由东向西,路缘石开裂破损一处,近2#伸缩缝', '840', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10555', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.728381', '1', '2024-03-05 09:05:21.728381', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏位置:凤翔路高架由南向北38#伸缩缝圆形导头处,防撞墙被剐蹭,损伤面积约一个平方', '10555', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10556', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.732232', '1', '2024-03-05 09:05:21.732232', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏位置:金城路立交E匝道2#伸缩缝处,沥青坑塘2处,损伤面积约0.5个平方', '10556', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10557', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.736212', '1', '2024-03-05 09:05:21.736212', '1', 1, '320213', NULL, '1', '0101000020B0110000FCF282D41D5383418360C7854CC24A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约两个平方', '10557', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10558', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.73989', '1', '2024-03-05 09:05:21.73989', '1', 1, '320213', NULL, '1', '0101000020B0110000921D9B8ABA5283413BC9563D0AB54A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏类型:其他,局部轻微', '10558', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10559', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.743593', '1', '2024-03-05 09:05:21.743593', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏程度:中,道板砖开裂破损6块', '10559', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10560', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.747363', '1', '2024-03-05 09:05:21.747363', '1', 1, '320213', NULL, '1', '0101000020B0110000B1942537195383413C15E2E93CAF4A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '栏杆,局部轻微', '10560', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10561', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.751262', '1', '2024-03-05 09:05:21.751262', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '人行道,局部轻微', '10561', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10562', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.755109', '1', '2024-03-05 09:05:21.755109', '1', 1, '320213', NULL, '1', '0101000020B0110000410A97DFAA538341C7D4CF81D4A54A41', NULL, NULL, '2019-11-18 00:00:00', NULL, '①3#墩锈胀露筋露筋 1 处,面积 0.10m 2;6#墩锈胀露筋 1 处。面积 2.00m 2;7# 墩 1 条竖向裂缝,长度 0.9m,最大宽度 0.11mm;9#墩锈胀露筋,面积 0.80m 2。 ②支座未见明显病害。 ', '10562', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10563', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.759007', '1', '2024-03-05 09:05:21.759007', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏位置:太湖大道高架由东向西LD052向西10米处,沥青网裂,损伤面积约两个平方', '10563', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10564', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.762762', '1', '2024-03-05 09:05:21.762762', '1', 1, '320213', NULL, '1', '0101000020B0110000C304AE2D16538341D73E1DA567B14A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10564', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10565', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.767495', '1', '2024-03-05 09:05:21.767495', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏位置:博学桥南往北,桥面砖缺失二块', '10565', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10566', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.771579', '1', '2024-03-05 09:05:21.771579', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:中,锚固区破损', '10566', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10567', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.775369', '1', '2024-03-05 09:05:21.775369', '1', 1, '320213', NULL, '1', '0101000020B0110000F362E8E7DC5283410F08E6B83DB14A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏程度:轻,人行道道板砖破损', '10567', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10568', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.779244', '1', '2024-03-05 09:05:21.779244', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:其他,有两处沥青坑塘,面积约1㎡', '10568', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10569', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.783112', '1', '2024-03-05 09:05:21.783112', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-12-03 00:00:00', NULL, '损坏类型:损坏,由北往南人行道道板砖破损松动共两块', '10569', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10570', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.787153', '1', '2024-03-05 09:05:21.787153', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-11-27 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一块松动三块', '10570', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10571', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.791564', '1', '2024-03-05 09:05:21.791564', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:江海路高架由南向北38#伸缩缝处,锚固区破损(中间车道)', '10571', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10572', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.795378', '1', '2024-03-05 09:05:21.795378', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '10572', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10573', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.799319', '1', '2024-03-05 09:05:21.799319', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '10573', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10574', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.802935', '1', '2024-03-05 09:05:21.802935', '1', 1, '320213', NULL, '1', '0101000020B0110000A9B14BD1DE5283418AA300F97CF14A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏类型:损坏,靠背破损', '10574', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10575', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.806842', '1', '2024-03-05 09:05:21.806842', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '10575', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10576', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.810527', '1', '2024-03-05 09:05:21.810527', '1', 1, '320213', NULL, '1', '0101000020B0110000066AEA59F3538341A643529172A54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:机场高架A匝道,左右两侧3处墙体刮蹭', '10576', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10577', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.814783', '1', '2024-03-05 09:05:21.814783', '1', 1, '320213', NULL, '1', '0101000020B0110000B01F69460555834186A4A4E300AC4A41', NULL, NULL, '2023-09-30 00:00:00', NULL, '损坏位置:新华高架由北向南WU4匝道桥,桥墩号003 底部钢筋裸露', '10577', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10578', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.818858', '1', '2024-03-05 09:05:21.818858', '1', 1, '320213', NULL, '1', '0101000020B01100001CF5501032538341534D9E7C37AA4A41', NULL, NULL, '2023-09-24 00:00:00', NULL, '损坏类型:损坏,沥青坑塘', '10578', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_761', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.822682', '1', '2024-03-05 09:05:21.822682', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:凤翔路高架29#伸缩缝向北约35米处(第一车道),沥青坑塘,损伤面积约1个平方', '761', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10579', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.826603', '1', '2024-03-05 09:05:21.826603', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-09-20 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '10579', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10580', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.830338', '1', '2024-03-05 09:05:21.830338', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏程度:轻,局部轻微', '10580', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10581', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.834028', '1', '2024-03-05 09:05:21.834028', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '①墩顶存在 4 条竖向裂缝,总长度 7.2m,最大宽度 0.10mm。 ②支座未见异常。 ', '10581', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_765', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.837682', '1', '2024-03-05 09:05:21.837682', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-08-22 00:00:00', NULL, '损坏位置:扬名三号浜桥由南向北道板破损,扬名三号浜桥由南向北道板破损', '765', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10582', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.841241', '1', '2024-03-05 09:05:21.841241', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-09-07 00:00:00', NULL, '损坏位置:东南侧人行梯道大理石砖缺损松动三块(每块3cm*30cm),局部轻微', '10582', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10583', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.845097', '1', '2024-03-05 09:05:21.845097', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,1处花杆缺失', '10583', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10584', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.848794', '1', '2024-03-05 09:05:21.848794', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:损坏,缺失1块', '10584', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_769', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.852807', '1', '2024-03-05 09:05:21.852807', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏程度:中,防护钢板翘起', '769', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10585', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.858261', '1', '2024-03-05 09:05:21.858261', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏程度:轻,广瑞桥由东向西,伸缩缝垃圾堵塞', '10585', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10586', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.862275', '1', '2024-03-05 09:05:21.862275', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏位置:栏杆基础,破损', '10586', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10587', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.867055', '1', '2024-03-05 09:05:21.867055', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:破损,沥青凹陷', '10587', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10588', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.870756', '1', '2024-03-05 09:05:21.870756', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-07-05 00:00:00', NULL, '损坏类型:损坏,侧面砖松动三处', '10588', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10592', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.87448', '1', '2024-03-05 09:05:21.87448', '1', 1, '320213', NULL, '1', '0101000020B0110000EDC1DDE7D6528341942D59AB8BB34A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏程度:中,环氧覆层破损', '10592', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10593', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.878181', '1', '2024-03-05 09:05:21.878181', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-06-14 00:00:00', NULL, '损坏程度:轻,桥面砖翘起', '10593', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10594', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.88181', '1', '2024-03-05 09:05:21.88181', '1', 1, '320213', NULL, '1', '0101000020B0110000876481C8FE528341CBD5C824E8AE4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏位置:凤翔路高架U2匝道2#伸缩缝处,防撞墙有裂缝', '10594', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10595', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.887671', '1', '2024-03-05 09:05:21.887671', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾', '10595', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10596', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.891731', '1', '2024-03-05 09:05:21.891731', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,桥名牌掉漆栏杆油漆脱落', '10596', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10597', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.8955', '1', '2024-03-05 09:05:21.8955', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏类型:其他,栏杆锈蚀', '10597', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10598', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.900985', '1', '2024-03-05 09:05:21.900985', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-11-21 00:00:00', NULL, '人行道,局部轻微', '10598', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10599', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.905016', '1', '2024-03-05 09:05:21.905016', '1', 1, '320213', NULL, '1', '0101000020B0110000D0F837F51653834146FD67CD639F4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,局部轻微', '10599', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10600', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.908775', '1', '2024-03-05 09:05:21.908775', '1', 1, '320213', NULL, '1', '0101000020B01100003515A98A2D538341932DCB45049F4A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏位置:由东往西第四条伸缩缝锚固区处沥青路面破损一处(30cm*30cm),局部轻微', '10600', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10601', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.912458', '1', '2024-03-05 09:05:21.912458', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏位置:景渎立交C匝道由南向西5#伸缩缝向西5米处,防撞墙被剐蹭', '10601', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10602', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.916103', '1', '2024-03-05 09:05:21.916103', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏位置:凤翔立交ES匝道由东往南4#伸缩缝处,防撞墙破损,损伤面积约一个平方', '10602', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10603', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.920938', '1', '2024-03-05 09:05:21.920938', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:重,锚固区破损', '10603', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10604', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.924551', '1', '2024-03-05 09:05:21.924551', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-18 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西95#墩,落水管脱落', '10604', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10605', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.928337', '1', '2024-03-05 09:05:21.928337', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '10605', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10606', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.931974', '1', '2024-03-05 09:05:21.931974', '1', 1, '320213', NULL, '1', '0101000020B01100008F52D0BEDA53834100D715194DA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏位置:景渎立交A匝道由西往南10#墩柱处,墩柱脏污', '10606', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10607', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.936243', '1', '2024-03-05 09:05:21.936243', '1', 1, '320213', NULL, '1', '0101000020B01100000C9800531F53834111213C3021A24A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '损坏位置:伸缩缝锚固区,伸缩缝锚固区混凝土破损', '10607', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10608', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.940348', '1', '2024-03-05 09:05:21.940348', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏类型:破损,锚固区破损约两米', '10608', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10609', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.944327', '1', '2024-03-05 09:05:21.944327', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-07-27 00:00:00', NULL, '损坏类型:破损,人行道道板砖损坏缺失', '10609', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10610', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.948266', '1', '2024-03-05 09:05:21.948266', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:金城路立交金城路主线由西向东33#伸缩缝处,锚固区破损,约2m', '10610', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10611', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.952238', '1', '2024-03-05 09:05:21.952238', '1', 1, '320213', NULL, '1', '0101000020B011000070EB6EC17C538341D14065C0CAB44A41', NULL, NULL, '2023-07-25 00:00:00', NULL, '损坏位置:望江立交e匝道处,沥青坑槽,损伤面积约2个平方', '10611', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1106', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.956169', '1', '2024-03-05 09:05:21.956169', '1', 1, '320213', NULL, '1', '0101000020B0110000DA373EA330538341BA92E45511AB4A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '损坏位置:进城方向,大理石破损', '1106', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10612', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.960353', '1', '2024-03-05 09:05:21.960353', '1', 1, '320213', NULL, '1', '0101000020B01100000A99246F61538341B330D23BE9A24A41', NULL, NULL, '2023-07-16 00:00:00', NULL, '损坏位置:由南向北,道板破损', '10612', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10613', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.96422', '1', '2024-03-05 09:05:21.96422', '1', 1, '320213', NULL, '1', '0101000020B0110000C02194BB3953834165D13BB1B4B54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:中,声屏障下封板缺失1处', '10613', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10614', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.968414', '1', '2024-03-05 09:05:21.968414', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,道板松动破损', '10614', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_970', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.347012', '1', '2024-03-05 09:05:22.347012', '1', 1, '320213', NULL, '1', '0101000020B01100002BF09C81EE5283413990BC358CA14A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:其他,桥铭牌倾斜', '970', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10615', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.973242', '1', '2024-03-05 09:05:21.973242', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖缺损五块,盲道砖缺损一块。', '10615', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_519', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.977381', '1', '2024-03-05 09:05:21.977381', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏程度:中,道板砖缺失6块,破损两块', '519', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_940', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.9815', '1', '2024-03-05 09:05:21.9815', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-07-21 00:00:00', NULL, '损坏类型:破损,道板砖缺失8块', '940', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10616', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.9855', '1', '2024-03-05 09:05:21.9855', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2019-11-19 00:00:00', NULL, '①桥面铺装共发现桥面铺装共发现 3 处坑槽,总面积为 0.05m2。\n②排水系统泄水孔雨篦缺失 1 处。\n③护栏存在防撞墙锈胀露筋 1 处,面积 0.20m2。\n④附属设施电力箱盖缺失。\n⑤桥头平顺未见异常。\n⑥伸缩缝未见异常。', '10616', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10617', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.989673', '1', '2024-03-05 09:05:21.989673', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-09-16 00:00:00', NULL, '损坏程度:轻,人行道加高带破损', '10617', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10618', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.994346', '1', '2024-03-05 09:05:21.994346', '1', 1, '320213', NULL, '1', '0101000020B0110000256AF024EC5283413C9220B861A44A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:由南往北非机动车道沥青路面积水一处(2m*1m),局部轻微', '10618', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10619', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:21.99913', '1', '2024-03-05 09:05:21.99913', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏位置:南侧桥头人行道沥青路面横向裂缝一条2m,局部轻微', '10619', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10620', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.002894', '1', '2024-03-05 09:05:22.002894', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-09-13 00:00:00', NULL, '损坏类型:破损,落水管脱落', '10620', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10621', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.007005', '1', '2024-03-05 09:05:22.007005', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-09-05 00:00:00', NULL, '损坏程度:轻,广北大桥由东向西,桥面大理石砖松动翘起共五块', '10621', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10622', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.01092', '1', '2024-03-05 09:05:22.01092', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-02 00:00:00', NULL, '损坏程度:中,伸缩装置型钢松动,有异响', '10622', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10623', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.01509', '1', '2024-03-05 09:05:22.01509', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-08-31 00:00:00', NULL, '损坏类型:破损,型钢松动,混泥土破损', '10623', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10624', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.020069', '1', '2024-03-05 09:05:22.020069', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-08-21 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝有杂物', '10624', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10625', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.024033', '1', '2024-03-05 09:05:22.024033', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-08-12 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '10625', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10626', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.028123', '1', '2024-03-05 09:05:22.028123', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏类型:破损,桥面砖破碎6块', '10626', NULL, '桥梁', 'ql_jg_fxpg', '1900-01-20 18:26:09.36', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_602', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.032', '1', '2024-03-05 09:05:22.032', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏程度:中,道板砖破损8块', '602', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_11', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.035791', '1', '2024-03-05 09:05:22.035791', '1', 1, '320213', NULL, '1', '0101000020B01100008D1D1B71905383418146E954C1A04A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏类型:破损,露筋拱起', '11', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_12', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.039794', '1', '2024-03-05 09:05:22.039794', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-09-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '12', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_882', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.044399', '1', '2024-03-05 09:05:22.044399', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏位置:金城快速路 由东往西312南京方向出口往前100米处右侧(近景云立交),井盖丢失', '882', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_883', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.048345', '1', '2024-03-05 09:05:22.048345', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,防撞桥破损 掉漆', '883', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_884', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.052132', '1', '2024-03-05 09:05:22.052132', '1', 1, '320213', NULL, '1', '0101000020B01100001A256F1549548341F770907805A94A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,伸缩缝 铁皮破损', '884', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1', '5', '金城公铁立交试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.056251', '1', '2024-03-05 09:05:22.056251', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长1693m,所在道路等级为快递路,交通繁忙,允许超过20t的重车通行,桥面系防撞墙存在车辆撞击痕迹,桥下有重车通行的高架桥。', '1', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_2', '5', '梁溪大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.060963', '1', '2024-03-05 09:05:22.060963', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE129B3155383416130B8DCD9A74A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁服役年限超过30年,交通繁忙,桥墩存在船只刮擦痕迹。', '2', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_3', '5', '盛新大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.064928', '1', '2024-03-05 09:05:22.064928', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长416m,单孔最大跨径121m,允许超过20t的重车通行,桥面系防撞墙存在车辆撞击痕迹。', '3', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_4', '5', '金城大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.068763', '1', '2024-03-05 09:05:22.068763', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长540m,单孔最大跨径105m,交通繁忙,护栏存在车辆撞击痕迹,允许超过20t的重车通行。', '4', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_214', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.072683', '1', '2024-03-05 09:05:22.072683', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损', '214', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_5', '5', '枕溪桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.076938', '1', '2024-03-05 09:05:22.076938', '1', 1, '320213', NULL, '1', '0101000020B011000008F5ED32B05183417BA3564032A94A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长138m,单孔最大跨径80m,所在道路等级为快递路,交通繁忙,护栏主梁存在车辆撞击痕迹,允许超过20t的重车通行。', '5', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_6', '5', '锡山大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.080652', '1', '2024-03-05 09:05:22.080652', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁服役年限超过30年,桥梁总长221m,单孔最大跨径60m,交通繁忙,桥墩存在船只刮擦痕迹。', '6', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_968', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.084537', '1', '2024-03-05 09:05:22.084537', '1', 1, '320213', NULL, '1', '0101000020B0110000C02194BB3953834165D13BB1B4B54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:中,声屏障下封板缺失1处', '968', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_969', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.088419', '1', '2024-03-05 09:05:22.088419', '1', 1, '320213', NULL, '1', '0101000020B01100006011BC1E3953834109051795B6B54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏位置:凤翔北路高架01标W2匝道终点处,泄水井盖缺失1个', '969', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_7', '5', '华清大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.092232', '1', '2024-03-05 09:05:22.092232', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长465m,单孔最大跨径132m,所在道路等级为快递路,允许超过20t的重车通行。', '7', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_8', '5', '清宁大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.096074', '1', '2024-03-05 09:05:22.096074', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁总长489m,单孔最大跨径113m,交通繁忙,允许超过20t的重车通行。', '8', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_9', '5', '江尖大桥试评估安全风险', NULL, '3', NULL, NULL, '2024-03-05 09:05:22.099898', '1', '2024-03-05 09:05:22.099898', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2023-04-27 00:00:00', NULL, '桥梁服役年限27年,桥梁总长428m,交通繁忙。', '9', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_518', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.103632', '1', '2024-03-05 09:05:22.103632', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏程度:中,沥青坑塘网裂,损伤面积约三个平方', '518', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_520', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.107525', '1', '2024-03-05 09:05:22.107525', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-09-21 00:00:00', NULL, '损坏位置:凤翔立交ES匝道由东往南8#伸缩缝向南10米处,防撞墙被剐蹭,损伤面积约4个平方', '520', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_841', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.111145', '1', '2024-03-05 09:05:22.111145', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '841', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_842', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.115054', '1', '2024-03-05 09:05:22.115054', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏类型:其他,一条横向裂缝,约11m', '842', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_843', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.119361', '1', '2024-03-05 09:05:22.119361', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏程度:中,道板砖松动两块', '843', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_844', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.123122', '1', '2024-03-05 09:05:22.123122', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-08-09 00:00:00', NULL, '损坏位置:巡桥由北向南人行道处,道板砖松动破损2块', '844', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_845', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.126822', '1', '2024-03-05 09:05:22.126822', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:破损,局部轻微', '845', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_846', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.130551', '1', '2024-03-05 09:05:22.130551', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '846', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_847', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.135399', '1', '2024-03-05 09:05:22.135399', '1', 1, '320213', NULL, '1', '0101000020B01100008F52D0BEDA53834100D715194DA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '847', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_848', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.14009', '1', '2024-03-05 09:05:22.14009', '1', 1, '320213', NULL, '1', '0101000020B01100008F52D0BEDA53834100D715194DA74A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏位置:景渎立交A匝道由西往南10#墩柱处,墩柱脏污', '848', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_849', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.144024', '1', '2024-03-05 09:05:22.144024', '1', 1, '320213', NULL, '1', '0101000020B011000046BAA682705383410CA4523477B04A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏位置:瞻江立交江海路主线由南向西14#伸缩缝处,型钢松动有异响', '849', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_850', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.148276', '1', '2024-03-05 09:05:22.148276', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏程度:轻,墩柱脏污', '850', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_856', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.152135', '1', '2024-03-05 09:05:22.152135', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏类型:其他,局部轻微', '856', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_974', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.155977', '1', '2024-03-05 09:05:22.155977', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏类型:其他,江海路人行天桥由北向南,非机动车道转弯处,桥栏杆下方大理石砖错位两块', '974', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_504', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.159826', '1', '2024-03-05 09:05:22.159826', '1', 1, '320213', NULL, '1', '0101000020B0110000733D4A6B315383416300E1019BA04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾堵塞', '504', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_975', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.163911', '1', '2024-03-05 09:05:22.163911', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,桥面大理石砖松动一块', '975', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_976', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.167676', '1', '2024-03-05 09:05:22.167676', '1', 1, '320213', NULL, '1', '0101000020B0110000F9E37D220A5383412EE82F8A21B24A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏程度:中,防撞墙开裂', '976', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_540', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.171966', '1', '2024-03-05 09:05:22.171966', '1', 1, '320213', NULL, '1', '0101000020B0110000C320F0B20F53834120CEC36F339F4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:由西往东非机动车道沥青路面横向裂缝一条1m,局部轻微', '540', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_541', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.175988', '1', '2024-03-05 09:05:22.175988', '1', 1, '320213', NULL, '1', '0101000020B0110000E8698725175383416FC6BEEE20B14A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏类型:破损,墩柱破损,损伤面积约两个平方', '541', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1140', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.179756', '1', '2024-03-05 09:05:22.179756', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:其他,东风桥由东向西,伸缩缝垃圾堵塞', '1140', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1146', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.183722', '1', '2024-03-05 09:05:22.183722', '1', 1, '320213', NULL, '1', '0101000020B0110000F2C2648A975383415533320ECBAF4A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏程度:轻,防撞墙被剐蹭,损伤面积约3个平方', '1146', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1147', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.187439', '1', '2024-03-05 09:05:22.187439', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:北侧,桥名牌不清', '1147', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1148', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.191331', '1', '2024-03-05 09:05:22.191331', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:其他,沥青拥包,S=4㎡', '1148', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_674', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.195228', '1', '2024-03-05 09:05:22.195228', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-09-04 00:00:00', NULL, '损坏程度:轻,道板缺损', '674', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_857', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.199243', '1', '2024-03-05 09:05:22.199243', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏程度:轻,长广溪桥由东向西,侧面大理石砖松动两块', '857', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_858', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.203021', '1', '2024-03-05 09:05:22.203021', '1', 1, '320213', NULL, '1', '0101000020B0110000D63F417E2A5383418AA2B2E72DB34A41', NULL, NULL, '2023-08-07 00:00:00', NULL, '损坏类型:其他,伸缩缝有垃圾', '858', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_859', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.206961', '1', '2024-03-05 09:05:22.206961', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-06 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '859', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_860', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.210744', '1', '2024-03-05 09:05:22.210744', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-08-05 00:00:00', NULL, '损坏位置:钱皋路049路灯往 盛德路口方向,桥栏杆脱落', '860', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_971', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.351216', '1', '2024-03-05 09:05:22.351216', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:破损,局部轻微', '971', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_862', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.21535', '1', '2024-03-05 09:05:22.21535', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,瓜市桥由东向西,桥面道板砖破损一块', '862', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_863', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.219231', '1', '2024-03-05 09:05:22.219231', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块翘起十块', '863', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_864', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.222915', '1', '2024-03-05 09:05:22.222915', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,道板破损缺失', '864', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_180', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.227147', '1', '2024-03-05 09:05:22.227147', '1', 1, '320213', NULL, '1', '0101000020B011000083C4BDD3ED528341D78C7E7246B24A41', NULL, NULL, '2023-11-21 00:00:00', NULL, '损坏类型:破损,不锈钢栏杆因碰撞导致变形、脱焊', '180', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_182', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.231232', '1', '2024-03-05 09:05:22.231232', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-11-21 00:00:00', NULL, '损坏位置:阅溪桥东往西方向,桥面大理石铺装松动一块拱起一块', '182', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_928', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.235165', '1', '2024-03-05 09:05:22.235165', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,面积约2个平方', '928', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_929', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.239085', '1', '2024-03-05 09:05:22.239085', '1', 1, '320213', NULL, '1', '0101000020B01100002C55F086C4538341A5EC66DA0EA14A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏程度:轻,道板损坏', '929', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_930', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.242972', '1', '2024-03-05 09:05:22.242972', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏类型:破损,桥面砖破碎6块', '930', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_865', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.247209', '1', '2024-03-05 09:05:22.247209', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-08-04 00:00:00', NULL, '损坏程度:轻,道板松动破损', '865', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_866', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.251094', '1', '2024-03-05 09:05:22.251094', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,外立面破损', '866', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_867', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.255264', '1', '2024-03-05 09:05:22.255264', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏位置:外立面,外立面污渍', '867', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_868', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.259146', '1', '2024-03-05 09:05:22.259146', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏位置:蠡湖大道高架由南向北第三条伸缩缝处,防护钢板缺失', '868', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_869', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.262981', '1', '2024-03-05 09:05:22.262981', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:其他,型钢抵死', '869', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_870', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.267097', '1', '2024-03-05 09:05:22.267097', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:其他,沥青坑塘,约一个平方', '870', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_871', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.2709', '1', '2024-03-05 09:05:22.2709', '1', 1, '320213', NULL, '1', '0101000020B01100000EFD93660B5383410FB1C13235B24A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏程度:中,栏杆漆皮剥落,损伤面积约两个平方', '871', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_872', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.274743', '1', '2024-03-05 09:05:22.274743', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,广北大桥由东向西,近1#伸缩缝,路缘石开裂破损一处', '872', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_873', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.278566', '1', '2024-03-05 09:05:22.278566', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '车行道,局部轻微', '873', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_874', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.282372', '1', '2024-03-05 09:05:22.282372', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏程度:轻,局部轻微', '874', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_875', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.286217', '1', '2024-03-05 09:05:22.286217', '1', 1, '320213', NULL, '1', '0101000020B0110000C5FD4E3BF05283416A7E3529B7AD4A41', NULL, NULL, '2023-08-03 00:00:00', NULL, '损坏类型:破损,人行道砖破损', '875', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_876', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.290462', '1', '2024-03-05 09:05:22.290462', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏程度:中,栏杆油漆剥落', '876', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1213', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.294137', '1', '2024-03-05 09:05:22.294137', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾', '1213', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1180', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.298405', '1', '2024-03-05 09:05:22.298405', '1', 1, '320213', NULL, '1', '0101000020B01100002FF6171F39538341A92DAE4328B14A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏程度:轻,民丰桥由东向西,桥面道板砖开裂四块', '1180', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_877', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.302442', '1', '2024-03-05 09:05:22.302442', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏类型:破损,沥青网裂,损伤面积约5个平方', '877', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_878', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.306202', '1', '2024-03-05 09:05:22.306202', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约7个平方', '878', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_879', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.309982', '1', '2024-03-05 09:05:22.309982', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏程度:中,道板砖缺失25块', '879', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_880', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.31384', '1', '2024-03-05 09:05:22.31384', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏类型:其他,防拋网立柱油漆剥落', '880', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_881', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.318195', '1', '2024-03-05 09:05:22.318195', '1', 1, '320213', NULL, '1', '0101000020B0110000DBBBBF9084538341961E4D693FB04A41', NULL, NULL, '2023-08-02 00:00:00', NULL, '损坏位置:黄泥头桥由南向北,平石破损一处,黄泥头桥由南向北,平石破损一处', '881', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_885', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.322222', '1', '2024-03-05 09:05:22.322222', '1', 1, '320213', NULL, '1', '0101000020B0110000D5DDFC53E6528341A1DB4BD034AD4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏位置:凤翔路高架D1匝道由南向北落地段,防撞墙开裂,损伤面积约两个平方', '885', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_886', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.32614', '1', '2024-03-05 09:05:22.32614', '1', 1, '320213', NULL, '1', '0101000020B0110000D5DDFC53E6528341A1DB4BD034AD4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,防撞墙开裂,损伤面积约两个平方', '886', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_887', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.330469', '1', '2024-03-05 09:05:22.330469', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏位置:景渎立交E匝道1#墩柱处,伸缩缝止水带与落水管破损', '887', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_888', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.334841', '1', '2024-03-05 09:05:22.334841', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏程度:轻,2块', '888', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_889', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.33917', '1', '2024-03-05 09:05:22.33917', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-08-01 00:00:00', NULL, '损坏类型:破损,桥面砖翘起10块', '889', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_891', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.343158', '1', '2024-03-05 09:05:22.343158', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '损坏程度:轻,墩柱脏污', '891', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_972', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.354987', '1', '2024-03-05 09:05:22.354987', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,道板松动破损', '972', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_973', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.360708', '1', '2024-03-05 09:05:22.360708', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏程度:轻,栏杆锈蚀', '973', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_977', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.364894', '1', '2024-03-05 09:05:22.364894', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏程度:中,3处泄水井盖缺失', '977', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_979', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.368732', '1', '2024-03-05 09:05:22.368732', '1', 1, '320213', NULL, '1', '0101000020B01100007A107B4341538341C19CA0EBE3BB4A41', NULL, NULL, '2023-07-14 00:00:00', NULL, '损坏类型:其他,伸缩缝防护钢板翘起', '979', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_892', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.372685', '1', '2024-03-05 09:05:22.372685', '1', 1, '320213', NULL, '1', '0101000020B01100000C9800531F53834111213C3021A24A41', NULL, NULL, '2023-07-31 00:00:00', NULL, '损坏位置:伸缩缝锚固区,伸缩缝锚固区混凝土破损', '892', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_904', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.376439', '1', '2024-03-05 09:05:22.376439', '1', 1, '320213', NULL, '1', '0101000020B0110000C5E0E8DE0553834117F5822F54AF4A41', NULL, NULL, '2023-07-29 00:00:00', NULL, '损坏位置:凤翔路高架U4匝道由南向北起点处右侧,侧平石拱起,面积约一个平方', '904', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_927', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.380307', '1', '2024-03-05 09:05:22.380307', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-07-24 00:00:00', NULL, '损坏程度:轻,江海路人行天桥跨路段,桥面大理石砖松动两块', '927', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_967', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.384234', '1', '2024-03-05 09:05:22.384234', '1', 1, '320213', NULL, '1', '0101000020B0110000EEC510E6165383415C6E30FA1FB14A41', NULL, NULL, '2023-07-15 00:00:00', NULL, '损坏类型:其他,防护钢板翘起', '967', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.765', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1026', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.38837', '1', '2024-03-05 09:05:22.38837', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:广北大桥由东向西,近1#伸缩缝,路缘石破损一处,广北大桥由东向西,近1#伸缩缝,路缘石破损一处', '1026', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1071', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.392222', '1', '2024-03-05 09:05:22.392222', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏位置:博学桥南往北,桥面砖缺失二块', '1071', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_811', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.396267', '1', '2024-03-05 09:05:22.396267', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '损坏位置:江海路人行天桥跨路段,桥面大理石砖松动三处,江海路人行天桥跨路段,桥面大理石砖松动三处', '811', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_900', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.400264', '1', '2024-03-05 09:05:22.400264', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏程度:重,沥青坑塘', '900', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_163', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.404786', '1', '2024-03-05 09:05:22.404786', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,道板确实松动多块', '163', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_165', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.408879', '1', '2024-03-05 09:05:22.408879', '1', 1, '320213', NULL, '1', '0101000020B011000020F388CB9752834164514A2E6CB14A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏类型:其他,伸缩缝内有垃圾', '165', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1027', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.412807', '1', '2024-03-05 09:05:22.412807', '1', 1, '320213', NULL, '1', '0101000020B0110000873856884C538341E62362B4ADA24A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '1027', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1028', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.417572', '1', '2024-03-05 09:05:22.417572', '1', 1, '320213', NULL, '1', '0101000020B011000069CA15B249538341C08C7E1E93A24A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏位置:,局部轻微', '1028', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1029', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.421745', '1', '2024-03-05 09:05:22.421745', '1', 1, '320213', NULL, '1', '0101000020B01100003295B7835E5383410B89423DF3A34A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '1029', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1030', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.425858', '1', '2024-03-05 09:05:22.425858', '1', 1, '320213', NULL, '1', '0101000020B01100003295B7835E5383410B89423DF3A34A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '1030', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1031', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.429786', '1', '2024-03-05 09:05:22.429786', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,栏杆底部砂浆脱落', '1031', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1072', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.43373', '1', '2024-03-05 09:05:22.43373', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:重,声屏障下封板缺失6m且松动', '1072', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1073', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.437515', '1', '2024-03-05 09:05:22.437515', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏程度:重,防撞墙被剐蹭', '1073', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1074', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.442556', '1', '2024-03-05 09:05:22.442556', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-07-01 00:00:00', NULL, '损坏类型:破损,落水管托盘处破损', '1074', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_298', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.446738', '1', '2024-03-05 09:05:22.446738', '1', 1, '320213', NULL, '1', '0101000020B011000070C5FE2FE7538341C2FB718F30964A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏类型:破损,松动', '298', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_300', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.450472', '1', '2024-03-05 09:05:22.450472', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-10-27 00:00:00', NULL, '损坏位置:桥下东侧行车道,防撞模板损坏', '300', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_448', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.454204', '1', '2024-03-05 09:05:22.454204', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:凤翔北路高架01标由北向南LD225处,防撞墙被剐蹭,损伤面积约一个平方', '448', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_449', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.462282', '1', '2024-03-05 09:05:22.462282', '1', 1, '320213', NULL, '1', '0101000020B0110000472575BF45538341A36307FD19AD4A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '449', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_450', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.466462', '1', '2024-03-05 09:05:22.466462', '1', 1, '320213', NULL, '1', '0101000020B0110000CE0CD445775383418FD7F519EDA04A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:由北向南机动车道和非机动车道中间,侧石破损', '450', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_451', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.470634', '1', '2024-03-05 09:05:22.470634', '1', 1, '320213', NULL, '1', '0101000020B01100002D35BB4B5F538341709E78CA1AA24A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:由北向南,大理石松动', '451', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_452', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.475289', '1', '2024-03-05 09:05:22.475289', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:景渎立交B匝道由西往北8#伸缩缝往北15米处,沥青坑塘(第一车道),损伤面积约一个平方', '452', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_453', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.479658', '1', '2024-03-05 09:05:22.479658', '1', 1, '320213', NULL, '1', '0101000020B0110000EB3F241E3C538341F13E5573AFA84A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏类型:破损,盲道道板破损', '453', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_454', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.483765', '1', '2024-03-05 09:05:22.483765', '1', 1, '320213', NULL, '1', '0101000020B0110000A95357046B538341183A213651A44A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:由北向南,大理石破损松动', '454', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_455', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.487732', '1', '2024-03-05 09:05:22.487732', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:劝学桥南向北,桥面砖松动破碎三块', '455', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_456', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.491645', '1', '2024-03-05 09:05:22.491645', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-10-06 00:00:00', NULL, '损坏位置:锡钢桥由北向南人行道处,道板砖缺失一块', '456', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_463', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.495608', '1', '2024-03-05 09:05:22.495608', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏程度:轻,广瑞桥由东向西,桥面道板砖松动三块开裂一块', '463', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_464', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.49953', '1', '2024-03-05 09:05:22.49953', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道处,道板砖缺失8块,破损1块', '464', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_465', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.503444', '1', '2024-03-05 09:05:22.503444', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏类型:破损,道板砖缺失2块破损1块', '465', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_467', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.507381', '1', '2024-03-05 09:05:22.507381', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-10-05 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖缺失一块', '467', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_468', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.511831', '1', '2024-03-05 09:05:22.511831', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:轻,局部轻微', '468', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_469', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.516371', '1', '2024-03-05 09:05:22.516371', '1', 1, '320213', NULL, '1', '0101000020B0110000EDC1DDE7D6528341942D59AB8BB34A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏类型:破损,泄水井盖破损', '469', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_813', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.520849', '1', '2024-03-05 09:05:22.520849', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-08-15 00:00:00', NULL, '上部结构,局部轻微', '813', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_814', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.524867', '1', '2024-03-05 09:05:22.524867', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-08-14 00:00:00', NULL, '损坏程度:中,沥青坑槽,损伤面积约1个平方', '814', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_336', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.529981', '1', '2024-03-05 09:05:22.529981', '1', 1, '320213', NULL, '1', '0101000020B011000056B8DE591854834172A851F8B5A24A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏位置:机场高架D上匝道出口处,防撞墙大面积涂层脱落', '336', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_202', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.534393', '1', '2024-03-05 09:05:22.534393', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏位置:南侧桥头盲道砖缺损一块(15cm*15㎝),局部轻微', '202', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_372', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.538569', '1', '2024-03-05 09:05:22.538569', '1', 1, '320213', NULL, '1', '0101000020B0110000BBE3941B715383413BF625A737A24A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏位置:金城路高架上匝道桥由西向东1#伸缩缝处,防撞墙破损,损伤面积约一个平方', '372', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_373', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.542436', '1', '2024-03-05 09:05:22.542436', '1', 1, '320213', NULL, '1', '0101000020B0110000689A37B5C752834101B8041EB58E4A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏类型:破损,广场砖破损', '373', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_374', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.546372', '1', '2024-03-05 09:05:22.546372', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏位置:东大岸桥由南向北辅道处,道板砖松动一块', '374', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_375', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.550203', '1', '2024-03-05 09:05:22.550203', '1', 1, '320213', NULL, '1', '0101000020B011000049C9EB2033538341ABC2115867B44A41', NULL, NULL, '2023-10-14 00:00:00', NULL, '损坏程度:中,道板砖松动两块', '375', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_71', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.55438', '1', '2024-03-05 09:05:22.55438', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '①桥台存在 1 处锈胀露筋,面积 0.04m2。桥墩存在 1 处锈胀露筋,面积 0.03m2;1 处网裂,面积 0.50m2;2 处混凝土破损,面积 0.03m2,1 条竖向裂缝,长度 1.00m,宽度 0.10mm。 ②支座未见明显病害。 ', '71', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1069', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.558735', '1', '2024-03-05 09:05:22.558735', '1', 1, '320213', NULL, '1', '0101000020B011000006C982D3275383414B66F5840BAB4A41', NULL, NULL, '2023-07-02 00:00:00', NULL, '损坏位置:出城方向桥南头,沥青坑塘网裂', '1069', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_420', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.562729', '1', '2024-03-05 09:05:22.562729', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '人行道,局部轻微', '420', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1032', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.566785', '1', '2024-03-05 09:05:22.566785', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-07-07 00:00:00', NULL, '损坏程度:轻,人行道板沉陷积水,局部道板破损', '1032', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:32:07.792', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_47', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.570643', '1', '2024-03-05 09:05:22.570643', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-14 00:00:00', NULL, '桥台露筋锈蚀,面积为 0.1m²;桥墩存在 4 条竖向裂缝,总长度为 6.9m,最大宽
- 度为 0.14m;桥墩存在 1 处锈胀,面积为 0.08m²;桥墩存在 1 处广告黏贴;墩身共存在 3 处违建;桥墩墩身共存在 3 处落水管遗失,总长度为 9.0m;桥墩存在 1 处植被覆盖;桥墩盖梁存在 1 处刮蹭、混凝土破损,面积为 1.00m²。桥墩存在 1 处倒角处起壳;桥墩存在 1 处环氧树脂脱落;桥墩存在 2 处破损露筋,总面积为 0.18m²。
- ②支座共发现 9-1#支座、9-2#支座火烧熏黑。', '47', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_53', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.575177', '1', '2024-03-05 09:05:22.575177', '1', 1, '320213', NULL, '1', '0101000020B0110000410A97DFAA538341C7D4CF81D4A54A41', NULL, NULL, '2019-11-18 00:00:00', NULL, '①3#墩锈胀露筋露筋 1 处,面积 0.10m 2;6#墩锈胀露筋 1 处。面积 2.00m 2;7# 墩 1 条竖向裂缝,长度 0.9m,最大宽度 0.11mm;9#墩锈胀露筋,面积 0.80m 2。 ②支座未见明显病害。 ', '53', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_54', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.579006', '1', '2024-03-05 09:05:22.579006', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2019-11-19 00:00:00', NULL, '①桥面铺装共发现桥面铺装共发现 3 处坑槽,总面积为 0.05m2。
- ②排水系统泄水孔雨篦缺失 1 处。
- ③护栏存在防撞墙锈胀露筋 1 处,面积 0.20m2。
- ④附属设施电力箱盖缺失。
- ⑤桥头平顺未见异常。
- ⑥伸缩缝未见异常。', '54', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_55', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.583028', '1', '2024-03-05 09:05:22.583028', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2019-11-19 00:00:00', NULL, '翼缘板存在 23 条横向裂缝,总长度 37.1m。腹板存在 1 条竖向裂缝,长度 0.4m。底板存在 2 条斜向裂缝,总长度3.4m;11 条横向裂缝,总长度 31.9m;1条 L 型裂缝,长度 2.0m。箱梁 1 处麻面,面积 0.10m2。 ', '55', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_40', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.588474', '1', '2024-03-05 09:05:22.588474', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2022-01-01 00:00:00', NULL, '两侧人行道施工中。
- 栏杆主要病害表现为缺失、露筋。中央隔离栏存在1处缺失,长约2.0m;右侧栏杆基础存在11处露筋,总长2.0m。左侧栏杆正在施工中。
- 排水系统主要病害表现为桥墩受水侵蚀。', '40', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_57', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.592838', '1', '2024-03-05 09:05:22.592838', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-11-20 00:00:00', NULL, '①桥面铺装共发现 1 处坑槽,面积为 0.03m2;8 条划痕,总长度为 0.32m。
- ②全桥排水系统泄水孔堵塞。
- ③防撞墙大面积刮蹭 1 处;锈胀露筋 5 处,总面积为 0.34m2。
- ④附属设施电力箱井盖缺失 1 处,全桥防抛网未见异常。
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝橡胶止水带通长破损 2 处,伸缩缝型钢断开 1 处。', '57', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_60', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.596849', '1', '2024-03-05 09:05:22.596849', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '①桥面铺装 1 处坑槽,面积为 0.01m2。
- ②全桥排水系统通畅,未见异常。
- ③护栏存在防撞墙 1 处锈胀露筋,面积为 0.50m2。
- ④附属设施全桥电力箱锈蚀、电箱盖缺失。
- ⑤桥头平顺未见异常。
- ⑥伸缩缝 3 处伸缩缝橡胶止水带通长破损。', '60', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_62', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.601119', '1', '2024-03-05 09:05:22.601119', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '①墩顶存在 4 条竖向裂缝,总长度 7.2m,最大宽度 0.10mm。 ②支座未见异常。 ', '62', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_37', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.605127', '1', '2024-03-05 09:05:22.605127', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '所抽检构件有9个的钢筋保护层厚度特征值与保护层厚度设计值的比值在0.96~1.19之间,评定标度为1,说明所抽检构件保护层厚度对钢筋耐久性影响不显著;所抽检构件有3个的钢筋保护层厚度特征值与保护层厚度设计值的比值在0.86~0.91之间,评定标度为2,说明所抽检构件保护层厚度对钢筋耐久性有轻度影响;所抽检构件有4个的钢筋保护层厚度特征值与保护层厚度设计值的比值在0.71~0.84之间,评定标度为3,说明所抽检构件保护层厚度对钢筋耐久性有影响。', '37', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_193', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.609227', '1', '2024-03-05 09:05:22.609227', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏位置:由东往西下匝道口旁机动车道沥青路面修补处二次破损共两处,局部轻微', '193', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_194', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.613176', '1', '2024-03-05 09:05:22.613176', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏类型:破损,防撞墙漆皮剥落,损伤面积约一个平方', '194', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_45', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.617203', '1', '2024-03-05 09:05:22.617203', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-14 00:00:00', NULL, '①桥面铺装共发现 4 处坑塘,拥包,总面积为 2.40m²;3 处龟裂,总面积为 3.00m²;1 处修补处;5 处坑槽,总面积为 0.10m²;1 处桥面铺装开裂,长度 1.5m;1 处桥面铺装混凝土附着。
- ②排水系统共存在 8 处堵塞,6 处雨篦缺失,4 处雨篦破损,排水系统共存在 1 处堵。
- ③防撞墙共存在 13 处锈胀露筋,总面积为 16.15m²;防撞墙存在 3 处破损。
- ④附属设施共发现电力箱全桥电箱盖缺失。
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝共存在 5 处填塞;伸缩缝共存在 10 处橡胶止水带破损;2 处型钢断裂;多处伸缩缝锚固区开裂。', '45', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_46', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.621298', '1', '2024-03-05 09:05:22.621298', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-14 00:00:00', NULL, '箱梁段存在翼缘板 14 条横向裂缝,总长度 22.0m;腹板 8 条竖向裂缝,总长度 7.4m;底板 7 条横向裂缝,总长度11.2m;底板 10 条纵向裂缝,总长度12.0m。箱梁存在 7处破损,总面积为2.28m²;15 处锈胀露筋,总面积 0.83m²;1 处蜂窝麻面,面积为 0.15m²;2 处火烧熏黑;1 处空洞露筋,面积为 0.15m²;1 处垃圾夹杂,面积为 0.04m²;2 处露筋,总面积为 0.72m²;2 处麻面,总面积为 3.80m²;2 处析白,总面积为 0.15m²;1处渗水腐蚀,面积为 0.30m²;3 处渗水析白;1 处老化剥落;1 处刮蹭;2 处垃圾堆积,总面积为 0.05m²;1 处违建。', '46', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_51', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.625535', '1', '2024-03-05 09:05:22.625535', '1', 1, '320213', NULL, '1', '0101000020B0110000410A97DFAA538341C7D4CF81D4A54A41', NULL, NULL, '2019-11-18 00:00:00', NULL, '①桥面铺装共发现 1 处坑槽,面积为 0.03m 2。
- ②全桥排水系统通畅,未见异常。
- ③防撞墙 7 处锈胀露筋,总面积为 1.18m 2。
- ④附属设施电力箱盖缺失 2 处。
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝 5 处伸缩缝橡胶止水带通长破损。 ', '51', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_61', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.629554', '1', '2024-03-05 09:05:22.629554', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2019-09-19 00:00:00', NULL, '箱梁段翼缘板存在 1 条横向裂缝,长度 0.8m;腹板存在 4 条斜向裂缝,总长度 2.27m。底板存在 10 条纵向裂缝,总长度 18.0m;3 条横向裂缝,总长度 3.0m;1 条 L 型裂缝,长度 1.2m。箱梁共存在 1 锈胀露筋面积 1.00m 2;1 处露筋夹杂,面积 0.10m 2, 1 处修补处二次开裂。', '61', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1107', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.633492', '1', '2024-03-05 09:05:22.633492', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-06-27 00:00:00', NULL, '人行道,局部轻微', '1107', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_136', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.637361', '1', '2024-03-05 09:05:22.637361', '1', 1, '320213', NULL, '1', '0101000020B0110000437918DD275383410AE09F4646A54A41', NULL, NULL, '2023-11-27 00:00:00', NULL, '损坏位置:,填塞', '136', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_65', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.641221', '1', '2024-03-05 09:05:22.641221', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2019-11-22 00:00:00', NULL, '①桥墩存在墩身渗水腐蚀 2 处;竖向裂缝 1 条,长度为 0.5m,最大宽度为 0.10mm,蜂窝麻面 1 处,面积 1.00m2;网裂 1 处,面积 0.13m2;台身渗水腐蚀 1 处;锈胀露筋 7 处,总面积 0.02m2。 ②支座未见异常。', '65', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_66', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.645834', '1', '2024-03-05 09:05:22.645834', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2019-11-23 00:00:00', NULL, '①桥面铺装未见异常。
- ②排水系统泄水孔雨篦缺失 1 处;4#墩落水管缺失 1 处。
- ③护栏存在防撞墙 1 处锈胀,面积 8.00m2;4 处锈胀露筋,总面积 16.00m2。
- ④附属设施发现全桥电力箱锈蚀、电箱盖缺失。
- ⑤桥头平顺未见明显异常。
- ⑥伸缩缝 2 处橡胶止水带破损。', '66', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_70', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.651007', '1', '2024-03-05 09:05:22.651007', '1', 1, '320213', NULL, '1', '0101000020B011000078D712F9AF538341D98349CB33A54A41', NULL, NULL, '2019-11-24 00:00:00', NULL, '箱梁底板存在 2 处横向裂缝,总长度为 2.5m;翼缘板存在 1 处横向裂缝,长度为 1.8m;腹板存在 1 处网裂,面积 0.65m2。箱梁共存在 3 处混凝土破损,总面积为 0.15m 2; 1 处锈胀露筋,面积 0.10m 2;2 处析白泛碱,总面积为 0.40m 2。 ', '70', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_198', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.655422', '1', '2024-03-05 09:05:22.655422', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-11-17 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '198', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_186', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.659119', '1', '2024-03-05 09:05:22.659119', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-11-20 00:00:00', NULL, '损坏位置:凤翔路高架由南向北38#伸缩缝圆形导头处,防撞墙被剐蹭,损伤面积约一个平方', '186', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_25', '5', '缺陷-支座检测', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.754795', '1', '2024-03-05 09:05:22.754795', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, ':全桥共计 1164 个支座,均为板式橡胶支座,现场共检
- 查了 1164 个支座,其中 8 个支座垫石存在不同程度的开裂现象。', '25', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_158', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.885782', '1', '2024-03-05 09:05:22.885782', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约15个平方', '158', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_49', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.663096', '1', '2024-03-05 09:05:22.663096', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-17 00:00:00', NULL, '箱梁段存在腹板和翼缘板共计 2 处网状裂缝,总面积 0.80m 2;翼缘板 24 条横向裂缝,总长度 44.3m;腹板 2 条斜向裂缝,总长度 2.41m;腹板 1 条纵向裂缝,长度 0.4m;腹板 17 条竖向裂缝,总长度 14.2m;底板 10 条纵向裂缝,总长度 20.9m;底板 8 条横向裂缝,总长度 11.9m;底板 1 条 L 型裂缝,长度 1.8m;底板 4 处纵向裂缝修补处延伸,总长度 4.3m;底板 1 处裂缝修补痕迹未见异常。箱梁共存在 4 处析白,总面积为 1.60m 2;10 处麻面,总面积为 4.77m 2;1 处焊渣麻面;7 处混凝土破损,总面积为 0.91m 2; 6 处混凝土锈胀露筋,总面积为 2.43m 2;3 处混凝土破损露筋,总面积为 0.86m 2;2 处空洞,总面积为 0.02m 2,1 处受水侵害;1 处高空坠物。 ', '49', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_64', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.666928', '1', '2024-03-05 09:05:22.666928', '1', 1, '320213', NULL, '1', '0101000020B01100000E6BB1B89A53834142AC70C9A5A44A41', NULL, NULL, '2019-11-22 00:00:00', NULL, '箱梁存在 1 条横向裂缝,长度为 1.0m。箱梁共存在 2 处破损,总面积为 0.03m 2; 2 处麻面,总面积为 0.42m 2;1 处泛白,面积为 0.70m 2;1 处垃圾夹杂,面积为 0.03m 2; 1 处析白,面积为 0.03m 2。', '64', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_123', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.670595', '1', '2024-03-05 09:05:22.670595', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '123', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_52', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.674702', '1', '2024-03-05 09:05:22.674702', '1', 1, '320213', NULL, '1', '0101000020B0110000410A97DFAA538341C7D4CF81D4A54A41', NULL, NULL, '2019-11-18 00:00:00', NULL, '箱梁存在翼缘板 1 条纵向裂缝,长度 4.0m;1 条横向裂缝,长度 2.4m;腹板存在 2 条竖向裂缝,总长度 2.0m。底板共存在 6 条纵向裂缝,总长度 21.6m;1 条横向裂缝,长度 1.1m;1 条 L 型裂缝,长度 2.5m。箱梁共存在 3 处麻面,总面积 2.26m 2;5 处锈胀露筋,总面积 1.70m 2;1 处破损露筋,面积 0.60m 2;2 处露筋;1 处破损,面积 0.01m 2; 2 处渗水泛碱;1 处电线悬挂。 ', '52', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_31', '5', '缺陷-支座检测', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.680257', '1', '2024-03-05 09:05:22.680257', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '全桥合计 41 个支座,均为盆
- 式橡胶支座;在病害检查的过程
- 中,对照图纸将现场支座的实际安
- 装方向与之对比,支座安装方向均
- 与图纸一致;支座 6 处钢盆锈蚀。', '31', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_19', '5', '缺陷-支座检测', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.684094', '1', '2024-03-05 09:05:22.684094', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '全桥合计 76 个支座,均为盆
- 式橡胶支座;在病害检查的过程
- 中,对照图纸将现场支座的实际安
- 装方向与之对比,8-7-1#支座至 8-
- 7-6#支座由于现场检测条件限制不
- 可见,13-13-2#支座、16-16-2#支
- 座为纵向改横向,其余支座安装方
- 向均与图纸一致;支座 3 处限位附
- 件抵住垫石,1 处限位钢板缺失,1
- 处限位钢板开裂,2 处四氟滑板挤
- 出,6 处钢盆锈蚀,2 处螺栓缺
- 失,4 处纵向偏移过大。', '19', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_216', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.688452', '1', '2024-03-05 09:05:22.688452', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏位置:江海立交,桥梁栏杆基础', '216', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_203', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.692531', '1', '2024-03-05 09:05:22.692531', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏类型:破损,局部轻微', '203', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_28', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.696536', '1', '2024-03-05 09:05:22.696536', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)铺装层 2 处横向开裂(L 总=7.6m)、1 处修补
- 开裂(S=2.00m2)、1 处网裂坑槽(S=0.28m2)、1 处划痕(L=1.0m);(2)伸缩缝锚固区混凝
- 土 2 处修补不良(L 总=1.8m)、4 条纵向裂缝(L 总=0.8m);(3)人行道路缘石多处破损(S 总=0.
- 12m2)、多处胀裂露筋锈蚀(L 总=0.8m)、1 处开裂(L=0.3m);人行道面砖 1 处开裂;(4)护
- 栏 3 处胀裂露筋锈蚀(L 总=0.6m)、1 处破损露筋锈蚀(L=0.1m,S=0.02m2);护栏基座 1 处破
- 损(S=0.02m2)、2 处破损露筋锈蚀(L 总=0.6m,S 总=0.03m2)、2 处开裂(L 总=2.3m)。', '28', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_108', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.700327', '1', '2024-03-05 09:05:22.700327', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '108', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_109', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.703962', '1', '2024-03-05 09:05:22.703962', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由北向南LD473处,栏杆破损', '109', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_10', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.709897', '1', '2024-03-05 09:05:22.709897', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '人行道,局部轻微', '10', NULL, '桥梁', 'ql_jg_fxpg', '2024-01-23 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_110', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.714036', '1', '2024-03-05 09:05:22.714036', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '110', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_253', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.717914', '1', '2024-03-05 09:05:22.717914', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏类型:破损,道板砖缺失一块', '253', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_111', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.723469', '1', '2024-03-05 09:05:22.723469', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏位置:金城路立交A匝道3#伸缩缝左侧,防撞墙被剐蹭,损伤面积约两个平方', '111', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_112', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.727528', '1', '2024-03-05 09:05:22.727528', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:破损,栏杆倾斜', '112', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_113', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.73159', '1', '2024-03-05 09:05:22.73159', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏程度:中,栏杆倾斜', '113', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_114', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.735526', '1', '2024-03-05 09:05:22.735526', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏类型:破损,沥青拥包,损伤面积约八个平方', '114', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_115', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.739315', '1', '2024-03-05 09:05:22.739315', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏类型:破损,沥青拥包,损伤面积约十个平方', '115', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_116', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.743273', '1', '2024-03-05 09:05:22.743273', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-12-02 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭(左右两侧防撞墙皆有),损伤面积约六个平方', '116', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_117', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.747274', '1', '2024-03-05 09:05:22.747274', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-12-01 00:00:00', NULL, '损坏位置:凤翔路高架由南向北LD002处,沥青拥包,损伤面积约两个平方', '117', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_118', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.750866', '1', '2024-03-05 09:05:22.750866', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-12-01 00:00:00', NULL, '损坏程度:中,防撞墙漆皮剥落', '118', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_30', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.759126', '1', '2024-03-05 09:05:22.759126', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)桥台 2 处渗水痕迹,盖梁 1 处渗水痕迹,桥
- 台背墙 1 处胀裂(S=0.04m2),2 处露筋锈蚀(L=0.7m);(2)墩身 5 条竖向裂缝(L=11.5
- m)、3 条横向裂缝(L=2.6m)、3 处破损(S=0.02m2)、6 处剥落(S=0.46m2)、4 处露筋锈蚀
- (L=0.4m)、2 处渗水痕迹、1 处网裂(S=1.25m2),1 处胀裂(S=0.04m2);(3)全桥合计 41
- 个支座,均为盆式橡胶支座;在病害检查的过程中,对照图纸将现场支座的实际安装方向与之对
- 比,支座安装方向均与图纸一致;支座 6 处钢盆锈蚀。', '30', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_120', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.763701', '1', '2024-03-05 09:05:22.763701', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约三个平方', '120', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_121', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.767665', '1', '2024-03-05 09:05:22.767665', '1', 1, '320213', NULL, '1', '0101000020B01100001C4F52B1EE5283414985EA3C21A14A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏位置:人行道踏步,道板破损缺失', '121', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_122', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.771672', '1', '2024-03-05 09:05:22.771672', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-11-30 00:00:00', NULL, '损坏类型:损坏,道板破损', '122', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_124', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.777463', '1', '2024-03-05 09:05:22.777463', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏类型:损坏,局部轻微', '124', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_125', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.781219', '1', '2024-03-05 09:05:22.781219', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:轻,局部轻微', '125', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_126', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.784876', '1', '2024-03-05 09:05:22.784876', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏位置:太湖大道高架由东向西19#伸缩缝处,沥青碎裂,损伤面积约一个平方', '126', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_127', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.788827', '1', '2024-03-05 09:05:22.788827', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '127', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_128', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.793185', '1', '2024-03-05 09:05:22.793185', '1', 1, '320213', NULL, '1', '0101000020B01100005EC94E9D53538341F2FC699908AE4A41', NULL, NULL, '2023-11-29 00:00:00', NULL, '损坏程度:轻,人行道瓷砖破损丢失', '128', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_129', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.797984', '1', '2024-03-05 09:05:22.797984', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏程度:轻,局部轻微', '129', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_130', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.801953', '1', '2024-03-05 09:05:22.801953', '1', 1, '320213', NULL, '1', '0101000020B0110000E95F597D465383413F0CADF41CA44A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏位置:由西往东桥中位置TD009旁人行道大理石砖破损一块(30cm*40cm),局部轻微', '130', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_131', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.80589', '1', '2024-03-05 09:05:22.80589', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏类型:损坏,局部轻微', '131', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_135', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.810286', '1', '2024-03-05 09:05:22.810286', '1', 1, '320213', NULL, '1', '0101000020B0110000733D4A6B315383416300E1019BA04A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾堵塞', '135', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_138', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.814041', '1', '2024-03-05 09:05:22.814041', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-27 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '138', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_204', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.817835', '1', '2024-03-05 09:05:22.817835', '1', 1, '320213', NULL, '1', '0101000020B0110000BF4D7FEC1D55834135F2076F89AD4A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏程度:轻,左右两侧多处墙体刮蹭', '204', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_141', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.821999', '1', '2024-03-05 09:05:22.821999', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏位置:金城东高架由西往东 QD363处 (下高架处),桥墩左右两侧 落水管脱落', '141', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_142', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.826005', '1', '2024-03-05 09:05:22.826005', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏位置:青祁路高架由南向北6#伸缩缝处,锚固区破损(第一车道)', '142', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_144', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.829855', '1', '2024-03-05 09:05:22.829855', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏位置:江海立交人行道,人行道贴面破损', '144', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_145', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.83363', '1', '2024-03-05 09:05:22.83363', '1', 1, '320213', NULL, '1', '0101000020B01100000CE1111A4554834121821C3E5EA04A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏类型:其他,落水管2处脱落', '145', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_146', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.838173', '1', '2024-03-05 09:05:22.838173', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏位置:江海西路高架01标由西向东S0匝道口,防撞墙被剐蹭', '146', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1108', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.842104', '1', '2024-03-05 09:05:22.842104', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-06-26 00:00:00', NULL, '人行道,局部轻微', '1108', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_147', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.845763', '1', '2024-03-05 09:05:22.845763', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏位置:江海西路高架01标由西向东防拋网段,防撞墙被剐蹭(边防撞墙和中间防撞墙处)', '147', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_150', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.850129', '1', '2024-03-05 09:05:22.850129', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:损坏,局部轻微', '150', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_151', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.853901', '1', '2024-03-05 09:05:22.853901', '1', 1, '320213', NULL, '1', '0101000020B0110000B2D81F28AC518341B0A2943A74AB4A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:破损,道板砖破损两块且松动两块', '151', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_152', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.860055', '1', '2024-03-05 09:05:22.860055', '1', 1, '320213', NULL, '1', '0101000020B0110000FEAEC85313538341206552DB89B04A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,道板砖破损一块', '152', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_153', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.864098', '1', '2024-03-05 09:05:22.864098', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:轻,瓜市桥由西向东,桥面道板砖开裂破损五块', '153', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_154', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.869166', '1', '2024-03-05 09:05:22.869166', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:破损,通裕桥由南向北,桥面道板砖开裂破损三块', '154', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_155', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.872962', '1', '2024-03-05 09:05:22.872962', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏位置:张福桥由西向东人行道处,混凝土破损,损伤面积约一个平方', '155', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_156', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.877175', '1', '2024-03-05 09:05:22.877175', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏程度:中,沥青车辙,损伤面积约15个平方', '156', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_157', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.881471', '1', '2024-03-05 09:05:22.881471', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏类型:其他,墩柱脏污', '157', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_159', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.889808', '1', '2024-03-05 09:05:22.889808', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-11-24 00:00:00', NULL, '损坏位置:景渎立交E匝道由北向东5#伸缩缝处,沥青坑塘,损伤面积约三个平方', '159', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_215', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.893926', '1', '2024-03-05 09:05:22.893926', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏类型:损坏,桥面砖缺失一块', '215', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_217', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.898026', '1', '2024-03-05 09:05:22.898026', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-13 00:00:00', NULL, '损坏程度:轻,局部轻微', '217', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_44', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.901811', '1', '2024-03-05 09:05:22.901811', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-11 00:00:00', NULL, '①墩身及盖梁锈胀露筋 14 处,总共面积 1.48m²;7 处耳墙与板梁抵死;墩身植被
- 覆盖 3 处;1 处析白;2 处可燃物堆积。
- ②支座共发现剪切变形 52 个;老化 114 个、开裂 75 个;局部脱空 34 个、完全脱空 2 个(482-481-5#支座、484-484-36#支座);轻微滑移 5 个;钢板锈蚀 7 个、钢板弯曲 2 个;褶皱变形 21 个;混凝土堆积遮挡 27 处;轻微鼓包 22 个;支座垫板未安装到位 2 处;挡板轻微开裂 1 处(右幅 416-2#支座)。', '44', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_254', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.906036', '1', '2024-03-05 09:05:22.906036', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏位置:涌翠桥北向南,桥面砖缺失一块', '254', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_50', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.909761', '1', '2024-03-05 09:05:22.909761', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-17 00:00:00', NULL, '①墩身共存在 2 处网裂,总面积 1.00m 2;5 条竖向裂缝,总长度 8.8m,最大宽度 0.12mm,2 处锈胀露筋,总面积 0.20m 2;2#墩修补痕迹未见异常。 ②支座:轻微滑移 1 处;支座与限位装置顶死 1 处;支座安装方向与设计不符合 1 处。 ', '50', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_470', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.913424', '1', '2024-03-05 09:05:22.913424', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:中,防撞墙漆皮剥落,损伤面积约一个平方', '470', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_471', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.917052', '1', '2024-03-05 09:05:22.917052', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏类型:其他,沥青拥包(边车道),损伤面积约一个平方', '471', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_472', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.921056', '1', '2024-03-05 09:05:22.921056', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '472', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_473', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.926266', '1', '2024-03-05 09:05:22.926266', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-10-04 00:00:00', NULL, '损坏程度:轻,桥面砖松动二块', '473', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_474', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.930924', '1', '2024-03-05 09:05:22.930924', '1', 1, '320213', NULL, '1', '0101000020B0110000F77BDB571453834133EC304487B04A41', NULL, NULL, '2023-10-03 00:00:00', NULL, '损坏类型:其他,道板砖缺失6块', '474', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_475', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.935522', '1', '2024-03-05 09:05:22.935522', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-03 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '475', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_476', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.939791', '1', '2024-03-05 09:05:22.939791', '1', 1, '320213', NULL, '1', '0101000020B0110000066AEA59F3538341A643529172A54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:机场高架A匝道,左右两侧3处墙体刮蹭', '476', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_201', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.94389', '1', '2024-03-05 09:05:22.94389', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏程度:轻,局部轻微', '201', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1280', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.947869', '1', '2024-03-05 09:05:22.947869', '1', 1, '320213', NULL, '1', '0101000020B0110000215385B1B85483417F23F3188AA94A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏类型:其他,新锡高架由南往北ld 077处', '1280', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1270', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.951941', '1', '2024-03-05 09:05:22.951941', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏类型:破损,道板破损', '1270', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_205', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.955794', '1', '2024-03-05 09:05:22.955794', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏位置:金城东由西往东ld 741-ld 745处,左侧防撞墙墙体刮蹭,墙体涂层脱落', '205', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_206', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.960154', '1', '2024-03-05 09:05:22.960154', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-11-16 00:00:00', NULL, '损坏程度:轻,东风桥由东向西,桥面道板砖开裂破损二十块', '206', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_207', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.964358', '1', '2024-03-05 09:05:22.964358', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,局部轻微', '207', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_208', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.96824', '1', '2024-03-05 09:05:22.96824', '1', 1, '320213', NULL, '1', '0101000020B0110000D0F837F51653834146FD67CD639F4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏程度:轻,局部轻微', '208', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_166', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.97229', '1', '2024-03-05 09:05:22.97229', '1', 1, '320213', NULL, '1', '0101000020B01100003A75652A6D52834167766BE55BB24A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:,局部轻微', '166', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_169', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.976236', '1', '2024-03-05 09:05:22.976236', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:南侧桥头人行道盲道砖缺失一块(15cm*15cm),局部轻微', '169', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_170', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.979921', '1', '2024-03-05 09:05:22.979921', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏位置:江海路高架由南向北38#伸缩缝处,锚固区破损(中间车道)', '170', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_171', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.983597', '1', '2024-03-05 09:05:22.983597', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损(第一车道)', '171', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_172', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.987487', '1', '2024-03-05 09:05:22.987487', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:轻,道板破损', '172', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_173', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.991352', '1', '2024-03-05 09:05:22.991352', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:轻,横向开裂', '173', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_174', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.9951', '1', '2024-03-05 09:05:22.9951', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-11-23 00:00:00', NULL, '损坏程度:轻,砼横向开裂', '174', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_175', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:22.998903', '1', '2024-03-05 09:05:22.998903', '1', 1, '320213', NULL, '1', '0101000020B01100003A75652A6D52834167766BE55BB24A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:防撞护栏,破损', '175', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_176', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.002586', '1', '2024-03-05 09:05:23.002586', '1', 1, '320213', NULL, '1', '0101000020B0110000B9BC804DF0528341D1F84C563DAF4A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:人行道,盲道破损', '176', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_177', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.006201', '1', '2024-03-05 09:05:23.006201', '1', 1, '320213', NULL, '1', '0101000020B0110000D0F837F51653834146FD67CD639F4A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏程度:轻,局部轻微', '177', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_249', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.009915', '1', '2024-03-05 09:05:23.009915', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '249', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_209', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.015025', '1', '2024-03-05 09:05:23.015025', '1', 1, '320213', NULL, '1', '0101000020B0110000E4451FFA96538341F206431DC2AD4A41', NULL, NULL, '2023-11-15 00:00:00', NULL, '损坏类型:破损,农下桥由南向北,桥面道板砖开裂破损四块', '209', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_213', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.019055', '1', '2024-03-05 09:05:23.019055', '1', 1, '320213', NULL, '1', '0101000020B01100008B5E4645C4528341E4F08264A9A54A41', NULL, NULL, '2023-11-14 00:00:00', NULL, '损坏位置:护坡,勾缝脱落', '213', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_218', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.0229', '1', '2024-03-05 09:05:23.0229', '1', 1, '320213', NULL, '1', '0101000020B01100008B5E4645C4528341E4F08264A9A54A41', NULL, NULL, '2023-11-13 00:00:00', NULL, '损坏位置:东侧人行道,破碎,松动', '218', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_219', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.026922', '1', '2024-03-05 09:05:23.026922', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏程度:中,沥青网裂,损伤面积约一个平方', '219', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_220', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.031276', '1', '2024-03-05 09:05:23.031276', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏位置:金城路立交E匝道2#伸缩缝处,沥青坑塘2处,损伤面积约0.5个平方', '220', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_221', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.035288', '1', '2024-03-05 09:05:23.035288', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏类型:破损,防撞墙表面网裂剥落,损伤面积约四个平方', '221', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_222', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.039798', '1', '2024-03-05 09:05:23.039798', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏位置:人行道,由北往南人行道道板砖缺损一块', '222', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_223', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.045167', '1', '2024-03-05 09:05:23.045167', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-11-12 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖盲道砖缺损十块', '223', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_224', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.049289', '1', '2024-03-05 09:05:23.049289', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '224', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_225', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.053457', '1', '2024-03-05 09:05:23.053457', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,沥青网裂,损伤面积约2平方米', '225', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_226', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.057581', '1', '2024-03-05 09:05:23.057581', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,沥青网裂凹陷,损伤面积约0.5平方米', '226', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_227', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.061794', '1', '2024-03-05 09:05:23.061794', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '227', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_228', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.065486', '1', '2024-03-05 09:05:23.065486', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '228', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_229', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.069417', '1', '2024-03-05 09:05:23.069417', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '229', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_230', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.073481', '1', '2024-03-05 09:05:23.073481', '1', 1, '320213', NULL, '1', '0101000020B011000097866193D7528341980376D542B04A41', NULL, NULL, '2023-11-11 00:00:00', NULL, '损坏类型:破损,广场砖破损', '230', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_231', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.077345', '1', '2024-03-05 09:05:23.077345', '1', 1, '320213', NULL, '1', '0101000020B0110000B9BC804DF0528341D1F84C563DAF4A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏位置:侧石,侧石磨损', '231', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_232', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.081191', '1', '2024-03-05 09:05:23.081191', '1', 1, '320213', NULL, '1', '0101000020B0110000B9BC804DF0528341D1F84C563DAF4A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏程度:轻,局部轻微', '232', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_233', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.086291', '1', '2024-03-05 09:05:23.086291', '1', 1, '320213', NULL, '1', '0101000020B0110000CAF99B996F5383418C33F82393B04A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏程度:轻,勤丰桥由东向西,桥面道板砖开裂破损两块', '233', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_234', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.090392', '1', '2024-03-05 09:05:23.090392', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏位置:西汀桥由东向西,桥面道板砖开裂破损六块,西汀桥由东向西,桥面道板砖开裂破损六块', '234', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_235', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.094226', '1', '2024-03-05 09:05:23.094226', '1', 1, '320213', NULL, '1', '0101000020B01100008B5E4645C4528341E4F08264A9A54A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏程度:轻,堵塞', '235', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_236', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.098122', '1', '2024-03-05 09:05:23.098122', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-11-10 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,桥面砖破碎损坏七块', '236', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_237', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.102015', '1', '2024-03-05 09:05:23.102015', '1', 1, '320213', NULL, '1', '0101000020B01100003515A98A2D538341932DCB45049F4A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏位置:由东往西第四条伸缩缝锚固区处沥青路面破损一处(30cm*30cm),局部轻微', '237', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_238', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.105848', '1', '2024-03-05 09:05:23.105848', '1', 1, '320213', NULL, '1', '0101000020B01100009DDD536C29538341E4326E4291A64A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏程度:轻,局部轻微', '238', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_239', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.109711', '1', '2024-03-05 09:05:23.109711', '1', 1, '320213', NULL, '1', '0101000020B01100002B00C67CB55283414CDFF9D9EBA54A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏程度:轻,局部轻微', '239', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_240', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.113783', '1', '2024-03-05 09:05:23.113783', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏位置:景渎立交C匝道由南向西5#伸缩缝向西5米处,防撞墙被剐蹭', '240', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_241', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.118091', '1', '2024-03-05 09:05:23.118091', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-11-09 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾树叶堵塞', '241', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_242', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.122188', '1', '2024-03-05 09:05:23.122188', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏程度:轻,道板砖开裂破损6块', '242', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_243', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.126072', '1', '2024-03-05 09:05:23.126072', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏程度:轻,广瑞桥由东向西,桥面道板砖破损一块', '243', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_244', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.130122', '1', '2024-03-05 09:05:23.130122', '1', 1, '320213', NULL, '1', '0101000020B0110000DBBBBF9084538341961E4D693FB04A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏程度:轻,黄泥头桥由南向北,由北向南桥面道板砖开裂破损共七块', '244', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_245', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.134073', '1', '2024-03-05 09:05:23.134073', '1', 1, '320213', NULL, '1', '0101000020B0110000E4451FFA96538341F206431DC2AD4A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏类型:损坏,农下桥由北向南,桥面道板砖开裂破损四块', '245', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_246', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.138245', '1', '2024-03-05 09:05:23.138245', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-11-08 00:00:00', NULL, '损坏位置:凤翔立交ES匝道由东往南4#伸缩缝处,防撞墙破损,损伤面积约一个平方', '246', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_247', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.1435', '1', '2024-03-05 09:05:23.1435', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏类型:破损,局部轻微', '247', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_248', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.147533', '1', '2024-03-05 09:05:23.147533', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '248', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_250', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.151565', '1', '2024-03-05 09:05:23.151565', '1', 1, '320213', NULL, '1', '0101000020B011000070B5952115558341F3868936FFAC4A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏位置:新华高架由南向北LD210处,左右侧防撞墙墙体刮蹭', '250', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_251', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.155426', '1', '2024-03-05 09:05:23.155426', '1', 1, '320213', NULL, '1', '0101000020B011000070B5952115558341F3868936FFAC4A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏程度:轻,底部落水管破损', '251', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_252', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.160029', '1', '2024-03-05 09:05:23.160029', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-07 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '252', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_256', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.164267', '1', '2024-03-05 09:05:23.164267', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '256', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_257', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.168552', '1', '2024-03-05 09:05:23.168552', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏位置:瓜市桥由西向东,桥面道板砖开裂破损五块,瓜市桥由西向东,桥面道板砖开裂破损五块', '257', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_258', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.172512', '1', '2024-03-05 09:05:23.172512', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '258', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_259', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.177602', '1', '2024-03-05 09:05:23.177602', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '259', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_260', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.181681', '1', '2024-03-05 09:05:23.181681', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-11-06 00:00:00', NULL, '损坏位置:博学桥北向南,桥面砖破损一块', '260', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_261', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.186104', '1', '2024-03-05 09:05:23.186104', '1', 1, '320213', NULL, '1', '0101000020B01100000EA66132E95283419AD2FAC145AD4A41', NULL, NULL, '2023-11-05 00:00:00', NULL, '损坏类型:其他,桥下有垃圾易燃物', '261', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_262', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.189929', '1', '2024-03-05 09:05:23.189929', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-11-05 00:00:00', NULL, '损坏类型:其他,沥青坑塘', '262', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_263', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.194051', '1', '2024-03-05 09:05:23.194051', '1', 1, '320213', NULL, '1', '0101000020B01100002B3064C1E7528341C7FD805328AD4A41', NULL, NULL, '2023-11-05 00:00:00', NULL, '损坏类型:其他,油漆剥落', '263', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_264', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.198191', '1', '2024-03-05 09:05:23.198191', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '264', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_265', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.202084', '1', '2024-03-05 09:05:23.202084', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏程度:中,沥青横向裂缝,损伤长度约3米', '265', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_266', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.206268', '1', '2024-03-05 09:05:23.206268', '1', 1, '320213', NULL, '1', '0101000020B01100006ADA3E8F47538341DE84B40C2AA74A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏类型:破损,道板盲道板破损', '266', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_267', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.210265', '1', '2024-03-05 09:05:23.210265', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏位置:涌翠桥南向北,桥面砖缺失一块', '267', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_268', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.214494', '1', '2024-03-05 09:05:23.214494', '1', 1, '320213', NULL, '1', '0101000020B01100006CA4E58A3754834110E4123BDFA84A41', NULL, NULL, '2023-11-04 00:00:00', NULL, '损坏类型:其他,局部轻微', '268', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1133', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.218674', '1', '2024-03-05 09:05:23.218674', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-18 00:00:00', NULL, '损坏类型:破损,落水管破损', '1133', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1135', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.222672', '1', '2024-03-05 09:05:23.222672', '1', 1, '320213', NULL, '1', '0101000020B01100001AD9CE430A5383414C408515C8AA4A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏位置:运河东路最右车道第一条伸缩缝处,沥青沉陷', '1135', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_269', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.227248', '1', '2024-03-05 09:05:23.227248', '1', 1, '320213', NULL, '1', '0101000020B01100006CA4E58A3754834110E4123BDFA84A41', NULL, NULL, '2023-11-03 00:00:00', NULL, '损坏类型:其他,桥墩081处落水管脱落', '269', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_270', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.232491', '1', '2024-03-05 09:05:23.232491', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-03 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭2处', '270', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_271', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.237231', '1', '2024-03-05 09:05:23.237231', '1', 1, '320213', NULL, '1', '0101000020B01100009F707D009553834128662F8501A44A41', NULL, NULL, '2023-11-03 00:00:00', NULL, '损坏类型:损坏,道板破损', '271', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_273', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.24138', '1', '2024-03-05 09:05:23.24138', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏类型:其他,道板砖破损两块', '273', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_274', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.245587', '1', '2024-03-05 09:05:23.245587', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏位置:由东向西下匝道口旁,主桥机动车道沥青路面修补处横向裂缝一条1m,局部轻微', '274', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_275', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.249598', '1', '2024-03-05 09:05:23.249598', '1', 1, '320213', NULL, '1', '0101000020B0110000739CE2F56753834162A7E692B1A14A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏程度:轻,局部轻微', '275', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_278', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.25446', '1', '2024-03-05 09:05:23.25446', '1', 1, '320213', NULL, '1', '0101000020B0110000437918DD275383410AE09F4646A54A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏程度:轻,填塞', '278', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_477', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.259752', '1', '2024-03-05 09:05:23.259752', '1', 1, '320213', NULL, '1', '0101000020B01100002BB77491085583414B8787CA6EA54A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏类型:其他,限载牌错位', '477', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_279', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.263756', '1', '2024-03-05 09:05:23.263756', '1', 1, '320213', NULL, '1', '0101000020B0110000526B9AD77053834137C64E842DA24A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约五个平方', '279', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_280', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.267981', '1', '2024-03-05 09:05:23.267981', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-11-01 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约六个平方', '280', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_281', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.271789', '1', '2024-03-05 09:05:23.271789', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-10-31 00:00:00', NULL, '损坏程度:轻,局部轻微', '281', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_282', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.2757', '1', '2024-03-05 09:05:23.2757', '1', 1, '320213', NULL, '1', '0101000020B01100000CE1111A4554834121821C3E5EA04A41', NULL, NULL, '2023-10-31 00:00:00', NULL, '损坏程度:轻,落水管脱落', '282', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_283', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.279548', '1', '2024-03-05 09:05:23.279548', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-10-31 00:00:00', NULL, '损坏程度:轻,江海路人行天桥由北向南,非机动车道上坡处,右侧大理石砖松动一块', '283', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_284', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.283896', '1', '2024-03-05 09:05:23.283896', '1', 1, '320213', NULL, '1', '0101000020B01100009F547B73AB538341B2A4156332A94A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏类型:破损,底部外立面装饰板破损', '284', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_285', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.288617', '1', '2024-03-05 09:05:23.288617', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏位置:钱荣路互通312国道上跨桥由北向南LD182处,沥青坑塘二处,损伤面积约五个平方', '285', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_330', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.294021', '1', '2024-03-05 09:05:23.294021', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-10-22 00:00:00', NULL, '损坏类型:其他,沥青坑塘', '330', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_286', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.298806', '1', '2024-03-05 09:05:23.298806', '1', 1, '320213', NULL, '1', '0101000020B01100006EE6175583528341D05E0B18EDB24A41', NULL, NULL, '2023-10-30 00:00:00', NULL, '损坏位置:钱荣路互通312国道上跨桥由北向南LD186处,沥青坑塘,损伤面积约一个平方', '286', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_289', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.30338', '1', '2024-03-05 09:05:23.30338', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-10-29 00:00:00', NULL, '损坏位置:通江大道、锡澄路主线上跨桥西向东第一条伸缩缝处,沥青拥包,损失面积约一个平方', '289', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_290', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.307746', '1', '2024-03-05 09:05:23.307746', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-10-29 00:00:00', NULL, '损坏程度:中,防撞墙破损,损伤面积约一个平方', '290', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_291', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.311902', '1', '2024-03-05 09:05:23.311902', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-28 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '291', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_302', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.316338', '1', '2024-03-05 09:05:23.316338', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏类型:其他,两块道板砖松动', '302', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1132', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.320444', '1', '2024-03-05 09:05:23.320444', '1', 1, '320213', NULL, '1', '0101000020B01100009B6CCA9141538341A142E70F76BC4A41', NULL, NULL, '2023-06-18 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约两个平方', '1132', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_303', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.324778', '1', '2024-03-05 09:05:23.324778', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '303', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_304', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.328863', '1', '2024-03-05 09:05:23.328863', '1', 1, '320213', NULL, '1', '0101000020B01100004DC370719E538341929BE1D094AB4A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏类型:破损,外侧防撞墙锈胀露筋,损伤面积约一个平方', '304', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_305', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.332745', '1', '2024-03-05 09:05:23.332745', '1', 1, '320213', NULL, '1', '0101000020B01100006ABCB46196538341E0FD7F2C1CAE4A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏位置:江海路高架U3匝道由北向南桥台处,外侧防撞墙破损,损伤面积约一个平方', '305', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_306', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.336714', '1', '2024-03-05 09:05:23.336714', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-26 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '306', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_307', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.340477', '1', '2024-03-05 09:05:23.340477', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏程度:轻,局部轻微', '307', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_309', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.344812', '1', '2024-03-05 09:05:23.344812', '1', 1, '320213', NULL, '1', '0101000020B0110000C8500E959B5383417A09152AA4A44A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏位置:金城路立交G匝道2#伸缩缝由西向东10米处两侧,防撞墙开裂破损,损伤面积约一个平方', '309', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_310', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.348815', '1', '2024-03-05 09:05:23.348815', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏程度:中,伸缩缝型钢松动有异响(从右往左数第二块松动)', '310', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_311', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.352724', '1', '2024-03-05 09:05:23.352724', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏类型:其他,伸缩缝防护钢板变形', '311', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_312', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.357061', '1', '2024-03-05 09:05:23.357061', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '312', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_313', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.361206', '1', '2024-03-05 09:05:23.361206', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏类型:破损,桥面砖破碎一块松动一块', '313', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_314', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.364868', '1', '2024-03-05 09:05:23.364868', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏程度:轻,局部轻微', '314', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_315', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.368801', '1', '2024-03-05 09:05:23.368801', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏位置:由南往北第二条伸缩缝旁机动车道沥青路面拥包(1m*20cm),局部轻微', '315', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_316', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.372745', '1', '2024-03-05 09:05:23.372745', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏类型:损坏,局部轻微', '316', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_317', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.377432', '1', '2024-03-05 09:05:23.377432', '1', 1, '320213', NULL, '1', '0101000020B0110000B4C4439974538341EA54A40864A24A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏程度:轻,局部轻微', '317', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_318', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.381608', '1', '2024-03-05 09:05:23.381608', '1', 1, '320213', NULL, '1', '0101000020B0110000DC2E341E905383411B18CE31FBAE4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏类型:破损,广瑞桥由东向西,桥面道板砖破损一块', '318', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_319', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.385566', '1', '2024-03-05 09:05:23.385566', '1', 1, '320213', NULL, '1', '0101000020B01100005B785719965383415E32004ABBB04A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏位置:长善桥由西向东,桥面道板砖开裂破损两块,长善桥由西向东,桥面道板砖开裂破损两块', '319', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_320', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.389692', '1', '2024-03-05 09:05:23.389692', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B71E85528341BD5F774A08B34A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约10个平方', '320', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_321', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.395313', '1', '2024-03-05 09:05:23.395313', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖缺损五块', '321', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_322', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.399292', '1', '2024-03-05 09:05:23.399292', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏类型:破损,瓜市桥由西向东,桥面盲道砖开裂破损四块', '322', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_323', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.403447', '1', '2024-03-05 09:05:23.403447', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏类型:破损,道板砖破损两块', '323', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_324', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.407558', '1', '2024-03-05 09:05:23.407558', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '324', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_325', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.411391', '1', '2024-03-05 09:05:23.411391', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '325', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_326', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.415236', '1', '2024-03-05 09:05:23.415236', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏程度:中,泄水井盖破损一只', '326', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_327', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.419493', '1', '2024-03-05 09:05:23.419493', '1', 1, '320213', NULL, '1', '0101000020B0110000D820139ED8538341E6D4950798A74A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏位置:景渎立交E匝道由北向东3#至4#伸缩缝之间,防撞墙被剐蹭,损伤面积约三个平方', '327', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_328', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.423294', '1', '2024-03-05 09:05:23.423294', '1', 1, '320213', NULL, '1', '0101000020B0110000C298FB76FD52834121BF45D709AC4A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '上部结构,局部轻微', '328', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_329', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.427197', '1', '2024-03-05 09:05:23.427197', '1', 1, '320213', NULL, '1', '0101000020B0110000848B152A88538341A3AD836B57A24A41', NULL, NULL, '2023-10-23 00:00:00', NULL, '损坏类型:破损,广场砖松动', '329', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_331', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.430881', '1', '2024-03-05 09:05:23.430881', '1', 1, '320213', NULL, '1', '0101000020B0110000618E5EFCC8538341028A1FD3DFA24A41', NULL, NULL, '2023-10-21 00:00:00', NULL, '损坏类型:其他,栏杆有污渍', '331', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_332', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.435', '1', '2024-03-05 09:05:23.435', '1', 1, '320213', NULL, '1', '0101000020B01100004A3CA0CEB75383415BB6481221A64A41', NULL, NULL, '2023-10-21 00:00:00', NULL, '损坏类型:破损,大理石破损', '332', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_333', '5', '桥路连接位置', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.438897', '1', '2024-03-05 09:05:23.438897', '1', 1, '320213', NULL, '1', '0101000020B01100004B840DD36A53834165D47CF72EAB4A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏位置:人行天桥步梯,瓷砖脱落', '333', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_334', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.442697', '1', '2024-03-05 09:05:23.442697', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏位置:青祁路高架由北向南距6#伸缩缝约30m处,泄水井盖缺失1只', '334', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_335', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.44655', '1', '2024-03-05 09:05:23.44655', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏类型:破损,泄水井盖破损一只', '335', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_337', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.451931', '1', '2024-03-05 09:05:23.451931', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约一个平方', '337', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_338', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.45558', '1', '2024-03-05 09:05:23.45558', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏类型:其他,伸缩缝防护钢板缺失', '338', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_339', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.460474', '1', '2024-03-05 09:05:23.460474', '1', 1, '320213', NULL, '1', '0101000020B0110000A95357046B538341183A213651A44A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:轻,大理石破损', '339', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_340', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.464349', '1', '2024-03-05 09:05:23.464349', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-10-20 00:00:00', NULL, '损坏程度:轻,路缘石大理石脱落一块破损一块翘起一块', '340', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_341', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.469207', '1', '2024-03-05 09:05:23.469207', '1', 1, '320213', NULL, '1', '0101000020B011000038CDBBC26C5483418A7C096B70A84A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:其他,左侧防撞墙墙体刮蹭', '341', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_342', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.473101', '1', '2024-03-05 09:05:23.473101', '1', 1, '320213', NULL, '1', '0101000020B0110000C82ED114C7548341626D1A11A7A64A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:其他,左侧防撞墙墙体污染', '342', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_343', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.477026', '1', '2024-03-05 09:05:23.477026', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:金城东由西往东ssf 101处,左侧防撞墙墙体刮蹭', '343', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_344', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.480964', '1', '2024-03-05 09:05:23.480964', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '344', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_345', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.484764', '1', '2024-03-05 09:05:23.484764', '1', 1, '320213', NULL, '1', '0101000020B01100005F156FAD0B558341F64AAEE054A54A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏程度:轻,右侧防撞墙墙体刮蹭', '345', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_346', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.489441', '1', '2024-03-05 09:05:23.489441', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:阅山桥由南向北人行道处,道板砖缺失2块', '346', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_347', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.493412', '1', '2024-03-05 09:05:23.493412', '1', 1, '320213', NULL, '1', '0101000020B01100001CE1746C4B5383419A8C2A2315A84A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:损坏,大理石松动', '347', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_348', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.497396', '1', '2024-03-05 09:05:23.497396', '1', 1, '320213', NULL, '1', '0101000020B0110000FBCFA1620053834188E55D05B2934A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:涌翠桥南向北,桥面砖翘起松动一块', '348', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_349', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.501741', '1', '2024-03-05 09:05:23.501741', '1', 1, '320213', NULL, '1', '0101000020B01100008B7BEC899F5283410F47C949CAA24A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏类型:损坏,道板破损', '349', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_351', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.505597', '1', '2024-03-05 09:05:23.505597', '1', 1, '320213', NULL, '1', '0101000020B011000008BC85A980538341A90A7FB287944A41', NULL, NULL, '2023-10-19 00:00:00', NULL, '损坏位置:东侧桥下车行道上方,防腐木撞坏', '351', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_352', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.511213', '1', '2024-03-05 09:05:23.511213', '1', 1, '320213', NULL, '1', '0101000020B0110000FE2A87232F53834122A435ECBDA84A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:轻,人行道破损', '352', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_353', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.516359', '1', '2024-03-05 09:05:23.516359', '1', 1, '320213', NULL, '1', '0101000020B0110000215385B1B85483417F23F3188AA94A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:轻,左侧防撞墙墙体污染', '353', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_354', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.520741', '1', '2024-03-05 09:05:23.520741', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏位置:机场高架由北往南Ld255处,右侧防撞墙墙体刮蹭', '354', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_355', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.524725', '1', '2024-03-05 09:05:23.524725', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏类型:损坏,局部轻微', '355', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_356', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.528505', '1', '2024-03-05 09:05:23.528505', '1', 1, '320213', NULL, '1', '0101000020B011000047C370FEF2518341B6A8169307A44A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '356', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_357', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.532354', '1', '2024-03-05 09:05:23.532354', '1', 1, '320213', NULL, '1', '0101000020B0110000B8E438CABC528341F62AA42C04B14A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏位置:揽翠桥西侧人行道,桥面人行道瓷砖损坏丢失', '357', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_358', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.536166', '1', '2024-03-05 09:05:23.536166', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约6个平方', '358', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_359', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.540073', '1', '2024-03-05 09:05:23.540073', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏程度:中,伸缩缝防护钢板翘起', '359', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_360', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.543958', '1', '2024-03-05 09:05:23.543958', '1', 1, '320213', NULL, '1', '0101000020B0110000F7285CF08E538341E02956EB00A94A41', NULL, NULL, '2023-10-18 00:00:00', NULL, '损坏位置:由北向南,道板破损', '360', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_361', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.547665', '1', '2024-03-05 09:05:23.547665', '1', 1, '320213', NULL, '1', '0101000020B0110000594D10443853834125274CE062AC4A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏类型:损坏,局部轻微', '361', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_362', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.551363', '1', '2024-03-05 09:05:23.551363', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏类型:损坏,局部轻微', '362', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_363', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.555234', '1', '2024-03-05 09:05:23.555234', '1', 1, '320213', NULL, '1', '0101000020B0110000E95F597D465383413F0CADF41CA44A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏程度:轻,局部轻微', '363', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_364', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.559273', '1', '2024-03-05 09:05:23.559273', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:由北往南人行道道板砖和盲道砖缺失共三块(每块19cm*19cm),局部轻微', '364', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_365', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.563542', '1', '2024-03-05 09:05:23.563542', '1', 1, '320213', NULL, '1', '0101000020B0110000E69532E405538341B9CE4D3154AF4A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:凤翔路高架D3匝道由南向北1#伸缩缝处,伸缩缝防护钢板翘起', '365', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_366', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.567574', '1', '2024-03-05 09:05:23.567574', '1', 1, '320213', NULL, '1', '0101000020B0110000EB73F5DD0353834194BF426C60984A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:学府立交由南向北LD011处,防撞墙被剐蹭,损伤面积约一个平方', '366', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_367', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.571518', '1', '2024-03-05 09:05:23.571518', '1', 1, '320213', NULL, '1', '0101000020B0110000CCF3205D625383419F2710186AA24A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏位置:由北向南运河一侧,道板破损', '367', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_368', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.575282', '1', '2024-03-05 09:05:23.575282', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-10-17 00:00:00', NULL, '损坏类型:破损,人行道瓷砖破损', '368', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_369', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.57898', '1', '2024-03-05 09:05:23.57898', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏位置:通裕桥由南向北,桥面道板砖破损三块,通裕桥由南向北,桥面道板砖破损三块', '369', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_370', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.582781', '1', '2024-03-05 09:05:23.582781', '1', 1, '320213', NULL, '1', '0101000020B01100006CA4E58A3754834110E4123BDFA84A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏程度:轻,左侧防撞墙 破损', '370', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_371', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.58673', '1', '2024-03-05 09:05:23.58673', '1', 1, '320213', NULL, '1', '0101000020B0110000BBE3941B715383413BF625A737A24A41', NULL, NULL, '2023-10-16 00:00:00', NULL, '损坏位置:金城路高架上匝道桥由西向东1#伸缩缝处,沥青拥包,损伤面积约2个平方', '371', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_382', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.591091', '1', '2024-03-05 09:05:23.591091', '1', 1, '320213', NULL, '1', '0101000020B01100001CE1746C4B5383419A8C2A2315A84A41', NULL, NULL, '2023-10-13 00:00:00', NULL, '损坏程度:轻,沥青坑塘', '382', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_383', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.595062', '1', '2024-03-05 09:05:23.595062', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏类型:损坏,局部轻微', '383', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_384', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.599323', '1', '2024-03-05 09:05:23.599323', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏类型:损坏,局部轻微', '384', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_385', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.603397', '1', '2024-03-05 09:05:23.603397', '1', 1, '320213', NULL, '1', '0101000020B011000038CDBBC26C5483418A7C096B70A84A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏位置:金城东由西往东右侧LD163–LD165处,落水井盖多处缺失', '385', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_386', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.607108', '1', '2024-03-05 09:05:23.607108', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:轻,西汀桥由东向西,桥面盲道砖破损两块', '386', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_387', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.611131', '1', '2024-03-05 09:05:23.611131', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏类型:其他,伸缩缝防护钢板翘起', '387', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_388', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.615335', '1', '2024-03-05 09:05:23.615335', '1', 1, '320213', NULL, '1', '0101000020B01100004A4E74118E538341C8F528D641AF4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,限载牌变形', '388', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_389', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.619498', '1', '2024-03-05 09:05:23.619498', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,栏杆基础松动', '389', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_390', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.623399', '1', '2024-03-05 09:05:23.623399', '1', 1, '320213', NULL, '1', '0101000020B01100004A4E74118E538341C8F528D641AF4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏位置:江海路高架U2匝道口由东向西处,沥青坑塘,损伤面积约一个平方', '390', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_391', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.627115', '1', '2024-03-05 09:05:23.627115', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '391', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_392', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.63107', '1', '2024-03-05 09:05:23.63107', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏位置:洪口圩中桥南向北,伸缩缝混凝土破损', '392', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_393', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.635151', '1', '2024-03-05 09:05:23.635151', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏位置:江海路高架由北向南16#伸缩缝处圆形导头,防撞墙被剐蹭,损伤面积约一个平方', '393', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_394', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.639253', '1', '2024-03-05 09:05:23.639253', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-10-12 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '394', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_195', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.643241', '1', '2024-03-05 09:05:23.643241', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-11-18 00:00:00', NULL, '损坏位置:太湖大道高架由东向西LD138处,沥青坑塘', '195', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_199', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.647035', '1', '2024-03-05 09:05:23.647035', '1', 1, '320213', NULL, '1', '0101000020B0110000C1F484FF65538341012428A2C7B24A41', NULL, NULL, '2023-11-17 00:00:00', NULL, '损坏程度:中,伸缩缝锚固区破损,损伤面积约一个平方', '199', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_106', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.651176', '1', '2024-03-05 09:05:23.651176', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏程度:中,栏杆破损', '106', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_395', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.654958', '1', '2024-03-05 09:05:23.654958', '1', 1, '320213', NULL, '1', '0101000020B0110000618E5EFCC8538341028A1FD3DFA24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:加高带破损露筋,局部轻微', '395', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_851', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.658871', '1', '2024-03-05 09:05:23.658871', '1', 1, '320213', NULL, '1', '0101000020B0110000199D3A90A053834107A3042DB9AB4A41', NULL, NULL, '2023-08-08 00:00:00', NULL, '损坏位置:靖海桥由南向北,伸缩缝垃圾堵塞,靖海桥由南向北,伸缩缝垃圾堵塞', '851', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_894', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.662657', '1', '2024-03-05 09:05:23.662657', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏类型:破损,锚固区破损约两米', '894', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_895', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.66628', '1', '2024-03-05 09:05:23.66628', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏位置:东大岸桥由北向南人行道,道板砖破损一块,松动三块', '895', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_896', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.670064', '1', '2024-03-05 09:05:23.670064', '1', 1, '320213', NULL, '1', '0101000020B0110000A6E022271C538341C5C9FDA628B24A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏程度:中,混凝土破损', '896', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_897', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.674102', '1', '2024-03-05 09:05:23.674102', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏程度:重,沥青车辙拥包,面积共约40㎡', '897', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_898', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.677865', '1', '2024-03-05 09:05:23.677865', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏位置:锡虞立交NE匝道由北向东第二条伸缩缝处,止水带破损', '898', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_899', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.681978', '1', '2024-03-05 09:05:23.681978', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-07-30 00:00:00', NULL, '损坏程度:重,沥青坑塘', '899', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-18 13:33:16.051', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_134', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.686464', '1', '2024-03-05 09:05:23.686464', '1', 1, '320213', NULL, '1', '0101000020B011000014BDCCD2E8528341F983482AA1A74A41', NULL, NULL, '2023-11-28 00:00:00', NULL, '损坏位置:青祁路高架D1匝道处,沥青裂缝,损伤长度约6m', '134', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_148', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.690245', '1', '2024-03-05 09:05:23.690245', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏位置:金城东路高架主线(2)18#伸缩缝由西向东120米处,防撞墙被剐蹭(中间防撞墙),损伤面积约两个平方', '148', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_149', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.694354', '1', '2024-03-05 09:05:23.694354', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-11-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约两个平方', '149', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_272', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.698451', '1', '2024-03-05 09:05:23.698451', '1', 1, '320213', NULL, '1', '0101000020B0110000FCF282D41D5383418360C7854CC24A41', NULL, NULL, '2023-11-02 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约两个平方', '272', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:36:03.976', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_308', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.702434', '1', '2024-03-05 09:05:23.702434', '1', 1, '320213', NULL, '1', '0101000020B0110000F96060C6B5538341222977D59BA44A41', NULL, NULL, '2023-10-25 00:00:00', NULL, '损坏程度:中,沥青凹陷,损伤面积约一个平方', '308', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_430', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.706431', '1', '2024-03-05 09:05:23.706431', '1', 1, '320213', NULL, '1', '0101000020B0110000A9B14BD1DE5283418AA300F97CF14A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏类型:损坏,靠背破损', '430', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_491', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.710109', '1', '2024-03-05 09:05:23.710109', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-09-27 00:00:00', NULL, '损坏程度:重,防护钢板翘起', '491', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1152', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.713897', '1', '2024-03-05 09:05:23.713897', '1', 1, '320213', NULL, '1', '0101000020B0110000FCF282D41D5383418360C7854CC24A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:凤翔北路高架E10匝道入口处,两侧防撞墙被剐蹭,损伤面积约4个平方', '1152', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1153', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.717905', '1', '2024-03-05 09:05:23.717905', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:金城东路高架主线(2)由西向东14#伸缩缝处,防护钢板变形', '1153', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1154', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.721485', '1', '2024-03-05 09:05:23.721485', '1', 1, '320213', NULL, '1', '0101000020B01100008BAF7DA2BD538341EF2C7A0561A64A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏程度:轻,沥青网裂1个平方', '1154', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_601', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.725231', '1', '2024-03-05 09:05:23.725231', '1', 1, '320213', NULL, '1', '0101000020B0110000C11602DEDC538341509F8F3681A74A41', NULL, NULL, '2023-09-12 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约三个平方', '601', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_178', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.728939', '1', '2024-03-05 09:05:23.728939', '1', 1, '320213', NULL, '1', '0101000020B01100000CE0ED8AA753834198C459A9B2B04A41', NULL, NULL, '2023-11-22 00:00:00', NULL, '损坏位置:锡虞立交由东向西最后一条伸缩缝向西约25米处,防撞墙被剐蹭,损伤面积约一个平方', '178', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-15 15:30:33.484', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_396', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.733204', '1', '2024-03-05 09:05:23.733204', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '396', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_397', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.737951', '1', '2024-03-05 09:05:23.737951', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏类型:损坏,局部轻微', '397', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:37:31.637', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_444', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.743121', '1', '2024-03-05 09:05:23.743121', '1', 1, '320213', NULL, '1', '0101000020B01100000AAC9C53A25283415698BE45329D4A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏程度:轻,局部轻微', '444', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_403', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.746941', '1', '2024-03-05 09:05:23.746941', '1', 1, '320213', NULL, '1', '0101000020B0110000BBE3941B715383413BF625A737A24A41', NULL, NULL, '2023-10-11 00:00:00', NULL, '损坏位置:金城路高架上匝道西向东1#伸缩缝处,沥青拥包,损伤面积约两个平方', '403', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_43', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.750711', '1', '2024-03-05 09:05:23.750711', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2019-11-11 00:00:00', NULL, '箱梁存在翼缘板 4 条横向裂缝,总长度 7.7m;翼缘板 2 条纵向裂缝,总长度 4.5m;腹板 16 条竖向裂缝,总长度 11.4m;底板 1 条横向裂缝,长度 1.5m;底板 36 条纵向裂缝,总长度 56.2m;底板 1 条斜向裂缝,长度 1.92m。空心板梁底板存在 4 条纵向裂缝,总长度 8.0m。梁底共存在 9 处麻面,总面积 6.80m2;1 处锈胀露筋,面积 0.01m2;8 处露筋,面积 3.49m2;43 处混凝土破损,总面积 4.01m2;5 处渗水析白,总面积 0.26m2;1 处锈胀露筋,面积 0.01m2。', '43', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_23', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.754416', '1', '2024-03-05 09:05:23.754416', '1', 1, '320211', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)小箱梁或板梁 6 处胀裂露筋锈蚀(L 总=3.4
- m、S 总=0.90m2)、3 处破损(S 总=0.04m2)、2 条纵向裂缝且析白(L 总=2.0m)、1 处底板保护层
- 过低;(2)湿接缝 1 处破损露筋(L 总=0.2m,S 总=0.04m2)、1 处渗水析白(S 总=0.4m2);(3)
- 主塔 3 处刮痕锈迹(L 总=1.4m);1 处破损(S=0.04m2);(4)主塔顶部锚头保护罩 1 处涂层剥
- 落锈蚀(S=0.08m2)。', '23', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_29', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.758876', '1', '2024-03-05 09:05:23.758876', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)箱梁外底板 1 条纵向裂缝(L=0.6m)、6 处
- 渗水析白(S 总=0.80m2)、6 处露筋锈蚀(L 总=0.75m)、2 处破损露筋锈蚀(L 总=0.3m,S 总=0.21
- m2)、5 处麻面露筋锈蚀(L 总=0.9m,S 总=0.7m2)、1 处夹杂(S=0.48m2);(2)箱室外腹板 4
- 处渗水析白(S 总=0.76m2)、1 处蜂窝(S=0.14m2),1 处胀裂露筋锈蚀(L=0.2m)、1 处渗水痕
- 迹;(3)箱室外翼板 8 处析白(S 总=0.09m2)、1 处破损(S=0.01m2)、3 处胀裂露筋锈蚀(L 总=
- 0.2m,S 总=0.03m2);(4)箱室内顶板 1 条横向裂缝(L=2.5m)、45 条纵向裂缝(L 总=60.1
- m)、3 条斜向裂缝(L 总=1.4m)、10 处渗水析白(S 总=0.28m2);(5)箱室内腹板 2 处渗水析
- 白(S 总=0.23m2);(6)箱室内齿板 5 处麻面(L 总=0.2m,S 总=0.43m2)、1 处空洞露筋锈蚀(L
- =0.1m,S=0.01m2)、1 处渗水析白(S=0.02m2);(7)箱室内横隔板 5 条横向裂缝(L 总=3.8
- m)、23 条竖向裂缝(L 总=18.64m)、14 条斜向裂缝(L 总=14.3m)。', '29', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_482', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.763503', '1', '2024-03-05 09:05:23.763503', '1', 1, '320213', NULL, '1', '0101000020B0110000B01F69460555834186A4A4E300AC4A41', NULL, NULL, '2023-09-30 00:00:00', NULL, '损坏位置:新华高架由北向南WU4匝道桥,桥墩号003 底部钢筋裸露', '482', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_480', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.842384', '1', '2024-03-05 09:05:23.842384', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏程度:中,沥青坑塘(边车道),损伤面积约一个平方', '480', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_481', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.846162', '1', '2024-03-05 09:05:23.846162', '1', 1, '320213', NULL, '1', '0101000020B011000051538B01AC5483411766F6B14FA74A41', NULL, NULL, '2023-09-30 00:00:00', NULL, '损坏程度:轻,左右两侧底部钢筋裸露 混泥土破损', '481', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_16', '5', '缺陷-桥面系', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.767448', '1', '2024-03-05 09:05:23.767448', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)桥面铺装层 7 条横向或纵向开裂(L 总=20.6
- m)、2 处网裂(S 总=2.0m2)、7 处拥包(S 总=39.16m2)、2 处坑槽(S 总=0.02m2);(2)伸缩缝
- 4 处橡胶条破损、锚固区混凝土 8 条纵向裂缝(L 总=1.6m)、2 处破损(S 总=0.02m2);(3)人行
- 道面砖 1 处破损(S=0.02m2);(4)护栏基座多处露筋锈蚀(L 总=2.0m),1 处碎裂(S=0.2m
- 2)。', '16', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_445', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.771387', '1', '2024-03-05 09:05:23.771387', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:全桥两侧人行道道板砖缺损五块(每块19cm*19cm),局部轻微', '445', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_446', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.775218', '1', '2024-03-05 09:05:23.775218', '1', 1, '320213', NULL, '1', '0101000020B011000049C9EB2033538341ABC2115867B44A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏位置:刘潭桥浜桥由南向北人行道处,道板砖破损5块,松动2块', '446', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_479', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.779001', '1', '2024-03-05 09:05:23.779001', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-10-01 00:00:00', NULL, '损坏位置:凤翔路高架由北向南50#伸缩缝处,泄水井盖缺失一块', '479', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_418', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.784314', '1', '2024-03-05 09:05:23.784314', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:破损,阅溪桥由西向东,2#伸缩缝右侧,侧边混凝土破损剥落一块', '418', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_419', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.788148', '1', '2024-03-05 09:05:23.788148', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:损坏,伸缩缝内有杂物', '419', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_17', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.791857', '1', '2024-03-05 09:05:23.791857', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)箱梁箱室外 16 处露筋锈蚀(L 总=2.7m)、2
- 1 处麻面露筋锈蚀(L=2.6m,S=6.73m2)、7 处破损露筋锈蚀(L 总=0.4m,S 总=0.11m2)、19 处渗
- 水析白(S 总=1.66m2)、5 处胀裂露筋锈蚀(L 总=1.2m,S 总=0.04m2);(2)箱梁箱室外底板 1 条
- 纵向裂缝(L=3.6m)、腹板 2 条竖向裂缝(L 总=1.3m);(3)箱室内顶板 4 条斜向裂缝(L=3.0
- m)、19 条纵向裂缝(L 总=20.8m)、31 处渗水析白(S 总=5.70m2)、1 处蜂窝(S=0.04m2),1
- 处麻面露筋锈蚀(L=0.1m,S=0.12m2)、1 处空洞露筋锈蚀(L=0.1m,S=0.01m2);(4)箱室内
- 腹板 2 条横向裂缝(L 总=1.6m)、2 条竖向裂缝(L 总=0.6m)、17 条斜向裂缝(L 总=11.7m)、31
- 处渗水析白(S=0.71m2),1 处离析(S=0.01m2),1 处破损(S=0.09m2);(5)箱室内横隔板 3
- 条横向裂缝(L 总=2.1m)、8 条竖向裂缝(L 总=3.9m)、7 条斜向裂缝(L 总=3.45m)、1 处网裂
- (S=0.96m2)、2 处渗水析白(S 总=0.02m2);(6)箱室内底板 1 处积水、透气孔 1 处波纹管外
- 露;(7)箱室内上齿板 1 条竖向裂缝(L=0.3m)、6 处渗水析白(S 总=0.30m2)、2 处蜂窝麻面
- (S 总=0.39m2)、1 处破损(S=0.01m2)、1 处空洞露筋锈蚀(L=0.2m,S=0.01m2);(8)箱室
- 内体外预应力 3 处锈蚀(S 总=0.13m2);(9)拱肋吊杆 5 处中心偏位、下缘防水罩 12 处倾斜;主
- 拱圈多处锈蚀(S 总=0.28m2)。', '17', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_428', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.795981', '1', '2024-03-05 09:05:23.795981', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝垃圾堵塞', '428', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_429', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.799777', '1', '2024-03-05 09:05:23.799777', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾', '429', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_431', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.803905', '1', '2024-03-05 09:05:23.803905', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏程度:轻,局部轻微', '431', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_432', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.807675', '1', '2024-03-05 09:05:23.807675', '1', 1, '320213', NULL, '1', '0101000020B0110000F1F87DDC11538341423C67C581AC4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:由东往西下匝道口机动车道沥青路面拥包(1.5m*30cm),局部轻微', '432', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_18', '5', '缺陷-下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.811638', '1', '2024-03-05 09:05:23.811638', '1', 1, '320213', NULL, '1', '0101000020B0110000AF3385611D538341327216BA68A74A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '(1)桥台 1 处渗水痕迹,台顶 2 处杂物堆积;挡
- 块 1 处开裂(L=0.1m);(2)盖梁 2 处渗水痕迹,多处露筋锈蚀(L 总=0.8m),1 处麻面露筋锈
- 蚀(L=0.2m,S=0.08m2);墩身 14 条竖向裂缝(L 总=20.0m)、1 条横向裂缝(L=2.5m)、5 处
- 无锡市 2021 年市管桥梁结构定期检测项目(三标段)开源大桥结构定期检测报告
- 报告编号:0226220247
- 苏交科集团检测认证有限公司 第 146 页 共 153 页
- 胀裂露筋锈蚀(L 总=0.6m,S 总=0.02m2)、2 处破损(S 总=0.03m2)、1 处渗水痕迹;(3)全桥合
- 计 76 个支座,均为盆式橡胶支座;在病害检查的过程中,对照图纸将现场支座的实际安装方向与
- 之对比,8-7-1#支座至 8-7-6#支座由于现场检测条件限制不可见,13-13-2#支座、16-16-2#支座为纵
- 向改横向,其余支座安装方向均与图纸一致;支座 3 处限位附件抵住垫石,1 处限位钢板缺失,1
- 处限位钢板开裂,2 处四氟滑板挤出,6 处钢盆锈蚀,2 处螺栓缺失,4 处纵向偏移过大。', '18', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_32', '5', '材质-钢筋保护层厚度', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.815612', '1', '2024-03-05 09:05:23.815612', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2022-01-15 00:00:00', NULL, '从现场的检测数据来看,所抽检的构件中钢筋保护层评定标度为“1”的有
- 无锡市 2021 年市管桥梁结构定期检测项目(三标段)清宁大桥结构定期检测报告
- 报告编号:0226220248
- 苏交科集团检测认证有限公司 第 127 页 共 131 页
- 19 个,说明其对结构钢筋耐久性影响不显著;评定标度为“2”的有 18 个,说明其对结构钢筋耐久性
- 有轻度影响;评定标度为“3”的有 3 个,说明其对结构钢筋耐久性有影响。', '32', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_411', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.819593', '1', '2024-03-05 09:05:23.819593', '1', 1, '320213', NULL, '1', '0101000020B0110000F93A7026F6528341ED415DE004B64A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:其他,伸缩缝内有垃圾', '411', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_412', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.823194', '1', '2024-03-05 09:05:23.823194', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:其他,有污渍', '412', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_413', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.827069', '1', '2024-03-05 09:05:23.827069', '1', 1, '320213', NULL, '1', '0101000020B01100004250FCA2F252834120BF7E5233B54A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏类型:破损,侧石破损', '413', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_415', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.830907', '1', '2024-03-05 09:05:23.830907', '1', 1, '320213', NULL, '1', '0101000020B011000074767292A2538341B7FA23DEC59E4A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏程度:轻,瓷砖缺损', '415', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_416', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.834817', '1', '2024-03-05 09:05:23.834817', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏位置:运河西北侧楼梯,锈蚀断裂缺失', '416', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_417', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.838596', '1', '2024-03-05 09:05:23.838596', '1', 1, '320213', NULL, '1', '0101000020B01100009AC460179B538341FC777D0E98A04A41', NULL, NULL, '2023-10-10 00:00:00', NULL, '损坏程度:轻,大理石松动水泥破损', '417', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_34', '5', '缺陷-上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.850461', '1', '2024-03-05 09:05:23.850461', '1', 1, '320213', NULL, '1', '0101000020B0110000C43C32783C5383417C4B003E00A54A41', NULL, NULL, '2022-03-10 00:00:00', NULL, '(1)引桥:翼缘板横向裂缝共8条,L总=20.0m,W=0.08~0.14mm;7-2#梁露筋锈蚀1处,L=0.30m;6-1#梁底板1条纵向裂缝,L=8.00m,W=0.08mm;
- (2)主桥箱室外:3-1#梁左翼板1条横向裂缝,L=2.00m,W=0.08mm;3-1#梁底破损5处,A总=0.19m2;4-1#、4-2#梁底板在钢混连接处轻微锈蚀;3-1#梁、3-2#梁底共8条纵向裂缝,L总=12.00m,W=0.08~0.10mm。
- (3)主桥箱室内:顶板横向裂缝2条,L总=1.50m,W=0.08mm;横隔板竖向裂缝1处,L=0.70m,W=0.10mm;顶板纵向裂缝57条,L总=82.30m,W=0.08~0.12mm;4-1#箱梁箱室箱室积水1处;钢箱室涂层脱落、起皮、锈蚀共35处,A总=18.04m2;
- (4)梯道:WL梯道1条纵向裂缝,L=0.80m,W=0.12mm;13条横向裂缝,L总=4.75m,W=0.08~0.12mm;1处露筋锈蚀,L=0.10m。WR梯道23条竖向裂缝,L总=9.20m,W=0.12mm;15条U形裂缝,L总=15.00m,W=0.08~0.10mm。EL梯道9条U形裂缝L总=5.40m,W=0.08~0.10mm,10条横向裂缝,L总=10.00m,W=0.08~0.10mm。ER梯道10条竖向裂缝L总=4.00m,W=0.08~0.12mm,10条横向裂缝,L总=10.00m,W=0.08~0.10mm。', '34', NULL, '桥梁', 'ql_jg_fxpg', '2023-09-25 00:00:00', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_421', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.854369', '1', '2024-03-05 09:05:23.854369', '1', 1, '320213', NULL, '1', '0101000020B0110000DDE04BC06A538341D5243FA646AB4A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏类型:损坏,南侧人行道瓷砖破损', '421', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_486', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.858209', '1', '2024-03-05 09:05:23.858209', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏程度:中,泄水井盖破损', '486', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_422', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.861871', '1', '2024-03-05 09:05:23.861871', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:金城路立交金城路主线24#伸缩缝由西向东5米处,防撞墙被剐蹭,损伤面积约一个平方', '422', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_423', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.865909', '1', '2024-03-05 09:05:23.865909', '1', 1, '320213', NULL, '1', '0101000020B011000012D55B9DAA538341843C10A396A54A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏程度:中,防撞墙被剐蹭,损伤面积约五个平方', '423', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_424', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.869894', '1', '2024-03-05 09:05:23.869894', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:张福桥由西向东人行道处,道板砖破损4块', '424', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_425', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.873617', '1', '2024-03-05 09:05:23.873617', '1', 1, '320213', NULL, '1', '0101000020B0110000D8213734AC5383415F8AABC8ECA54A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:金城路立交D匝道由东往北2#伸缩缝处,沥青坑塘,损伤面积约一个平方', '425', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_426', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.878044', '1', '2024-03-05 09:05:23.878044', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北起点处边车道,沥青坑塘,损伤面积约一个平方', '426', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_427', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.88171', '1', '2024-03-05 09:05:23.88171', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-10-09 00:00:00', NULL, '损坏程度:轻,桥面砖破碎一块', '427', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_438', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.885498', '1', '2024-03-05 09:05:23.885498', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏程度:中,防撞墙被撞移位', '438', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_439', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.889368', '1', '2024-03-05 09:05:23.889368', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:金城路立交金城路主线由东向西24#伸缩缝处,沥青坑塘,损伤面积约一个平方', '439', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_442', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.893118', '1', '2024-03-05 09:05:23.893118', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-10-08 00:00:00', NULL, '损坏位置:由北向南,道板松动', '442', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_443', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.896933', '1', '2024-03-05 09:05:23.896933', '1', 1, '320213', NULL, '1', '0101000020B01100007EBBB380D75283417357217DB4A54A41', NULL, NULL, '2023-10-07 00:00:00', NULL, '损坏类型:破损,破损', '443', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_483', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.90076', '1', '2024-03-05 09:05:23.90076', '1', 1, '320213', NULL, '1', '0101000020B0110000986380882653834147965AA35FB34A41', NULL, NULL, '2023-09-30 00:00:00', NULL, '损坏位置:凤翔北路高架01标由北向南LD145处,沥青坑塘,损伤面积约一个平方', '483', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_484', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.904497', '1', '2024-03-05 09:05:23.904497', '1', 1, '320213', NULL, '1', '0101000020B011000009B482EC36548341A0EB34605A9F4A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏类型:损坏,底部护板脱落', '484', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_485', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.90848', '1', '2024-03-05 09:05:23.90848', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏程度:中,道板砖缺失6块', '485', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_487', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.912092', '1', '2024-03-05 09:05:23.912092', '1', 1, '320213', NULL, '1', '0101000020B011000025930CD6DC538341EB6A644992A74A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约一个平方', '487', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_488', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.916111', '1', '2024-03-05 09:05:23.916111', '1', 1, '320213', NULL, '1', '0101000020B0110000FB123844DC538341E216F3B54AA74A41', NULL, NULL, '2023-09-29 00:00:00', NULL, '损坏程度:中,沥青坑塘,损伤面积约一个平方', '488', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_489', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.919996', '1', '2024-03-05 09:05:23.919996', '1', 1, '320213', NULL, '1', '0101000020B011000031B6D0A18353834165D4274F01AA4A41', NULL, NULL, '2023-09-28 00:00:00', NULL, '损坏位置:由北向南,道板缺失', '489', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_490', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.923744', '1', '2024-03-05 09:05:23.923744', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-09-27 00:00:00', NULL, '损坏程度:中,横向裂缝一条', '490', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_492', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.927476', '1', '2024-03-05 09:05:23.927476', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-09-27 00:00:00', NULL, '损坏类型:破损,桥面大理石破损一块', '492', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_493', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.931191', '1', '2024-03-05 09:05:23.931191', '1', 1, '320213', NULL, '1', '0101000020B01100001AF9C31F7C5283414BA357F107A54A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏程度:轻,局部轻微', '493', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_494', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.935228', '1', '2024-03-05 09:05:23.935228', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏位置:瓜市桥由西向东,桥面道板砖缺失破损三块,瓜市桥由西向东,桥面道板砖缺失破损三块', '494', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_495', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.939286', '1', '2024-03-05 09:05:23.939286', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏位置:江海路高架由北向南34#伸缩缝和32#伸缩缝处,防撞墙被剐蹭,损伤面积共计三个平方', '495', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_496', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.942919', '1', '2024-03-05 09:05:23.942919', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '496', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_497', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.946619', '1', '2024-03-05 09:05:23.946619', '1', 1, '320213', NULL, '1', '0101000020B0110000DF973AD3985383416A616B8E5AA84A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏程度:中,防撞墙4处被剐蹭,损伤面积约两个平方', '497', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_498', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.950588', '1', '2024-03-05 09:05:23.950588', '1', 1, '320213', NULL, '1', '0101000020B011000038EFB8854F53834140D65367949D4A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾堵塞', '498', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_499', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.954245', '1', '2024-03-05 09:05:23.954245', '1', 1, '320213', NULL, '1', '0101000020B01100002553855A9E538341727077F495AB4A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏类型:破损,防撞墙漆皮剥落,损伤面积约一个平方', '499', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_500', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.957919', '1', '2024-03-05 09:05:23.957919', '1', 1, '320213', NULL, '1', '0101000020B01100002553855A9E538341727077F495AB4A41', NULL, NULL, '2023-09-26 00:00:00', NULL, '损坏位置:江海路高架D5匝道由南向北2#伸缩缝处右侧,防撞墙被剐蹭,损伤面积约一个平方', '500', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-21 14:56:46.49', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1136', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.961584', '1', '2024-03-05 09:05:23.961584', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏类型:破损,阅溪桥由西向东伸缩缝缝宽异常,锚固区破损', '1136', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1137', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.965168', '1', '2024-03-05 09:05:23.965168', '1', 1, '320213', NULL, '1', '0101000020B0110000F362E8E7DC5283410F08E6B83DB14A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏位置:东泾浜桥由东向西伸缩缝处,混凝土破损', '1137', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1138', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.969291', '1', '2024-03-05 09:05:23.969291', '1', 1, '320213', NULL, '1', '0101000020B0110000F362E8E7DC5283410F08E6B83DB14A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏程度:轻,人行道道板砖破损', '1138', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1139', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.97319', '1', '2024-03-05 09:05:23.97319', '1', 1, '320213', NULL, '1', '0101000020B0110000ED6DFAB045538341005515DC11A44A41', NULL, NULL, '2023-06-17 00:00:00', NULL, '损坏类型:其他,沥青拥包,面积约5个平方', '1139', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1141', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.976816', '1', '2024-03-05 09:05:23.976816', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:其他,通裕桥由南向北,伸缩缝垃圾堵塞', '1141', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1142', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.980618', '1', '2024-03-05 09:05:23.980618', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE6007A1F538341C1AE267920B24A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:损坏,西汀桥由东向西,桥面道板砖缺失四块', '1142', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1143', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.984414', '1', '2024-03-05 09:05:23.984414', '1', 1, '320213', NULL, '1', '0101000020B0110000C9A22978A153834168FE983E33954A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏类型:其他,桥名牌不清', '1143', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1144', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.98837', '1', '2024-03-05 09:05:23.98837', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:江海西路高架01标由西向东LD226处,防撞墙被剐蹭,损伤面积约3个平方', '1144', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1149', '5', '桥名牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.99218', '1', '2024-03-05 09:05:23.99218', '1', 1, '320213', NULL, '1', '0101000020B0110000D55031A315538341BE2B2D7F27944A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:南侧,桥名牌褪色', '1149', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1150', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:23.996377', '1', '2024-03-05 09:05:23.996377', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏程度:轻,桥面砖缺失一块', '1150', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1151', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.000322', '1', '2024-03-05 09:05:24.000322', '1', 1, '320213', NULL, '1', '0101000020B01100008815352F3A538341998F6BBB9FBE4A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏类型:其他,声屏障下封板缺失1片', '1151', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1155', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.004281', '1', '2024-03-05 09:05:24.004281', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏类型:其他,防撞墙被剐蹭,损伤面积约25个平方', '1155', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1156', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.009609', '1', '2024-03-05 09:05:24.009609', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:瞻江立交EN匝道由东往北8#伸缩缝,泄水井盖缺失1只', '1156', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1157', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.014682', '1', '2024-03-05 09:05:24.014682', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:锡钢桥由北向南人行道,道板砖缺失8块', '1157', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1158', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.018852', '1', '2024-03-05 09:05:24.018852', '1', 1, '320213', NULL, '1', '0101000020B0110000EDC1DDE7D6528341942D59AB8BB34A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏程度:中,环氧覆层破损', '1158', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1159', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.02255', '1', '2024-03-05 09:05:24.02255', '1', 1, '320213', NULL, '1', '0101000020B011000067AD6FE405538341319C32E196B24A41', NULL, NULL, '2023-06-15 00:00:00', NULL, '损坏位置:福昌桥由西向东第二条伸缩缝处,混凝土破损', '1159', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1212', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.026623', '1', '2024-03-05 09:05:24.026623', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:重,防撞墙外侧锈胀露筋', '1212', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1214', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.030207', '1', '2024-03-05 09:05:24.030207', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '1214', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1215', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.033864', '1', '2024-03-05 09:05:24.033864', '1', 1, '320213', NULL, '1', '0101000020B01100009C8FEBA333538341CC1682AA6E8D4A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:轻,伸缩缝垃圾', '1215', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1216', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.037566', '1', '2024-03-05 09:05:24.037566', '1', 1, '320213', NULL, '1', '0101000020B011000078BFC3B4B752834128616D0285B04A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏类型:破损,人行道瓷砖破损', '1216', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1217', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.041617', '1', '2024-03-05 09:05:24.041617', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:其他,落水管损坏', '1217', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1218', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.045316', '1', '2024-03-05 09:05:24.045316', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏位置:阅山桥由北向南人行道,道板砖缺失11块', '1218', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1219', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.049708', '1', '2024-03-05 09:05:24.049708', '1', 1, '320213', NULL, '1', '0101000020B0110000C7E9F2FB96538341BA30D2A929B14A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:其他,东风桥由东向西,伸缩缝垃圾堵塞', '1219', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1220', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.053582', '1', '2024-03-05 09:05:24.053582', '1', 1, '320213', NULL, '1', '0101000020B01100009BBA32460D538341B6A1292BA18F4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '1220', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1221', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.057288', '1', '2024-03-05 09:05:24.057288', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏程度:轻,栏杆油漆脱落裂纹', '1221', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1222', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.061563', '1', '2024-03-05 09:05:24.061563', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,桥栏杆油漆黄锈脱落', '1222', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1223', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.065174', '1', '2024-03-05 09:05:24.065174', '1', 1, '320213', NULL, '1', '0101000020B011000003C58FE0025383416A9F8E191C9A4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,桥名牌掉漆栏杆油漆脱落', '1223', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1224', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.069695', '1', '2024-03-05 09:05:24.069695', '1', 1, '320213', NULL, '1', '0101000020B01100002978D1FDFC528341E61DFC2C519C4A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,限载牌弯曲不平整', '1224', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1225', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.073446', '1', '2024-03-05 09:05:24.073446', '1', 1, '320213', NULL, '1', '0101000020B011000006642F3C265383419EEC119C64A94A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏程度:轻,垃圾堵塞', '1225', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1226', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.077114', '1', '2024-03-05 09:05:24.077114', '1', 1, '320213', NULL, '1', '0101000020B01100006124B48DAE53834125E6CB7F5CA24A41', NULL, NULL, '2023-06-08 00:00:00', NULL, '损坏类型:破损,侧石破损 桥面道板松动', '1226', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1227', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.080967', '1', '2024-03-05 09:05:24.080967', '1', 1, '320213', NULL, '1', '0101000020B011000067A93CED7B5383410E5DDE0ABFA24A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏程度:中,防护钢板翘起', '1227', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1228', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.084729', '1', '2024-03-05 09:05:24.084729', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:凤翔大桥由北向南起点处人行道,道板砖破损且松动', '1228', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1229', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.090061', '1', '2024-03-05 09:05:24.090061', '1', 1, '320213', NULL, '1', '0101000020B01100001C9A2BB3FD5283415FB32391D6AE4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:凤翔大桥由北向南LD086处,泄水井盖缺失1只(尺寸:590*270)', '1229', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1230', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.094187', '1', '2024-03-05 09:05:24.094187', '1', 1, '320213', NULL, '1', '0101000020B01100006740F665045383416838F32D78974A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏程度:中,油漆脱落刮花', '1230', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1231', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.098415', '1', '2024-03-05 09:05:24.098415', '1', 1, '320213', NULL, '1', '0101000020B01100006FDEB1DB02538341B869FA9ED4994A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:大通路人行天桥南北双向,油漆脱落刮花黄锈', '1231', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1232', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.103821', '1', '2024-03-05 09:05:24.103821', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:长广溪桥西往东,桥面砖翘起破损', '1232', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1233', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.107694', '1', '2024-03-05 09:05:24.107694', '1', 1, '320213', NULL, '1', '0101000020B011000063E55090E0528341D6730B0552944A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:阅溪桥东西双向,桥面砖破损', '1233', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1234', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.111806', '1', '2024-03-05 09:05:24.111806', '1', 1, '320213', NULL, '1', '0101000020B01100002A0B58BD2D538341C5D7D774888D4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:金家浜桥东限载牌,限载牌弯曲不平整', '1234', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1235', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.115616', '1', '2024-03-05 09:05:24.115616', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏类型:破损,桥栏杆油漆黄锈脱落', '1235', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1236', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.12049', '1', '2024-03-05 09:05:24.12049', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏位置:江海路人行天桥由南向北,人行天桥楼梯左侧防撞设施混凝土剥落一处,江海路人行天桥由南向北,人行天桥楼梯左侧防撞设施混凝土剥落一处', '1236', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1237', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.124305', '1', '2024-03-05 09:05:24.124305', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-06-07 00:00:00', NULL, '损坏程度:轻,江海路人行天桥,跨路桥面大理石砖破损一块松动两块', '1237', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1238', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.128331', '1', '2024-03-05 09:05:24.128331', '1', 1, '320213', NULL, '1', '0101000020B011000068AF37FADD538341EEAA074EA5A74A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏位置:张福桥由西向东人行道,道板砖破损4块(尺寸:500*370)', '1238', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1239', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.132365', '1', '2024-03-05 09:05:24.132365', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:破损,锚固区破损', '1239', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1240', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.136116', '1', '2024-03-05 09:05:24.136116', '1', 1, '320213', NULL, '1', '0101000020B011000046BAA682705383410CA4523477B04A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:其他,型钢松动有异响', '1240', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1246', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.139752', '1', '2024-03-05 09:05:24.139752', '1', 1, '320213', NULL, '1', '0101000020B011000007184F989653834193917A7FC1B04A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏程度:轻,积善桥由东向西,1#伸缩缝堵塞', '1246', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1247', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.143779', '1', '2024-03-05 09:05:24.143779', '1', 1, '320213', NULL, '1', '0101000020B011000024CBD097555283413AE00FA98BB34A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏位置:江海西路高架由东向西无锡西互通入口处,落水管脱落', '1247', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1248', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.148027', '1', '2024-03-05 09:05:24.148027', '1', 1, '320213', NULL, '1', '0101000020B011000049C9EB2033538341ABC2115867B44A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏位置:刘潭桥浜桥由南向北人行道处,栏杆油漆剥落', '1248', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1249', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.152279', '1', '2024-03-05 09:05:24.152279', '1', 1, '320213', NULL, '1', '0101000020B01100001B864F7C15538341AF4DB869F5B14A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏类型:破损,道板砖破损两块', '1249', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1250', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.156212', '1', '2024-03-05 09:05:24.156212', '1', 1, '320213', NULL, '1', '0101000020B0110000406E463754538341E140810940A34A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏位置:人行道,东北侧人行梯道踏步台阶多处碎边', '1250', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1251', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.160098', '1', '2024-03-05 09:05:24.160098', '1', 1, '320213', NULL, '1', '0101000020B01100009DA2E343055383418B0629EE93B24A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏类型:其他,栏杆锈蚀', '1251', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1252', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.163958', '1', '2024-03-05 09:05:24.163958', '1', 1, '320213', NULL, '1', '0101000020B011000089360E2E0C5383416FACFD25CF8F4A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏类型:其他,桥面砖松动', '1252', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1253', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.16767', '1', '2024-03-05 09:05:24.16767', '1', 1, '320213', NULL, '1', '0101000020B01100003FF75EBD12538341173AE81C518F4A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏位置:蠡湖大道南往北,桥面砖破损', '1253', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1254', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.171552', '1', '2024-03-05 09:05:24.171552', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏程度:重,防撞墙开裂', '1254', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1255', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.175316', '1', '2024-03-05 09:05:24.175316', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-04 00:00:00', NULL, '损坏类型:破损,锚固区严重破损', '1255', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1256', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.180358', '1', '2024-03-05 09:05:24.180358', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-03 00:00:00', NULL, '损坏位置:青祁路高架由南向北LD089处,有沥青坑塘', '1256', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1257', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.185709', '1', '2024-03-05 09:05:24.185709', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-06-03 00:00:00', NULL, '损坏程度:轻,防护钢板缺失1块', '1257', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1258', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.189832', '1', '2024-03-05 09:05:24.189832', '1', 1, '320213', NULL, '1', '0101000020B011000008482D01815283415DE201FB0CB04A41', NULL, NULL, '2023-06-03 00:00:00', NULL, '损坏类型:破损,道板砖破损', '1258', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1259', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.193757', '1', '2024-03-05 09:05:24.193757', '1', 1, '320213', NULL, '1', '0101000020B0110000ACE20D19635383417613B5FE9FAE4A41', NULL, NULL, '2023-06-03 00:00:00', NULL, '损坏位置:通江大道LD177路灯号,人行道砖破损', '1259', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1260', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.197495', '1', '2024-03-05 09:05:24.197495', '1', 1, '320213', NULL, '1', '0101000020B01100000DFEF7B0D3528341ED1681A71B984A41', NULL, NULL, '2023-06-03 00:00:00', NULL, '损坏程度:轻,桥面砖翘起', '1260', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1261', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.201652', '1', '2024-03-05 09:05:24.201652', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏类型:损坏,瓜市桥由西向东,桥面道板砖破损一块', '1261', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1262', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.206055', '1', '2024-03-05 09:05:24.206055', '1', 1, '320213', NULL, '1', '0101000020B01100004A3CA0CEB75383415BB6481221A64A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏程度:轻,平石破损', '1262', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1263', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.210361', '1', '2024-03-05 09:05:24.210361', '1', 1, '320213', NULL, '1', '0101000020B0110000A80653FCCC53834153F01474F6954A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏位置:华庄桥南侧,道板破损', '1263', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1264', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.214201', '1', '2024-03-05 09:05:24.214201', '1', 1, '320213', NULL, '1', '0101000020B01100006124B48DAE53834125E6CB7F5CA24A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏类型:破损,道板砖松动', '1264', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1265', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.218053', '1', '2024-03-05 09:05:24.218053', '1', 1, '320213', NULL, '1', '0101000020B0110000A54EC0291B5383410FD9B23E58AA4A41', NULL, NULL, '2023-06-02 00:00:00', NULL, '损坏类型:其他,盲道皮缺失', '1265', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1266', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.221959', '1', '2024-03-05 09:05:24.221959', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏位置:南侧桥头,南侧桥头桥名牌往南五米,人行道道板砖拱起松动十块(每块19cm*19cm)', '1266', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1267', '5', '下部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.225676', '1', '2024-03-05 09:05:24.225676', '1', 1, '320213', NULL, '1', '0101000020B0110000339CF9A0165383413EEE224E84B04A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏位置:凤翔路高架由南向北80#墩柱右侧,锈胀露筋', '1267', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1268', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.229259', '1', '2024-03-05 09:05:24.229259', '1', 1, '320213', NULL, '1', '0101000020B01100008D2C20AE70528341A15E7E5DBAA84A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏位置:钱荣路高架由北向南落地段,沥青坑塘与拥包', '1268', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1269', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.233094', '1', '2024-03-05 09:05:24.233094', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏程度:轻,全桥两侧人行道道板砖缺损十块', '1269', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1271', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.23682', '1', '2024-03-05 09:05:24.23682', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-06-01 00:00:00', NULL, '损坏类型:破损,南侧桥头人行道盲道砖缺损一块(15㎝*15㎝)', '1271', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1272', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.241381', '1', '2024-03-05 09:05:24.241381', '1', 1, '320213', NULL, '1', '0101000020B0110000B2C91A1F395383415F0E82EE27B14A41', NULL, NULL, '2023-05-31 00:00:00', NULL, '损坏类型:损坏,瓜市桥由东向西,桥面道板砖破损一块', '1272', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1273', '5', '其它危及行人、行船、行车安全的病害', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.245283', '1', '2024-03-05 09:05:24.245283', '1', 1, '320213', NULL, '1', '0101000020B011000075292E29F5528341C3546C5E20904A41', NULL, NULL, '2023-05-31 00:00:00', NULL, '损坏位置:东侧桥门洞,堆放秸秆易燃物', '1273', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1274', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.249154', '1', '2024-03-05 09:05:24.249154', '1', 1, '320213', NULL, '1', '0101000020B0110000100F6866CD5383413553E8F636B14A41', NULL, NULL, '2023-05-31 00:00:00', NULL, '损坏位置:毛岸里桥由西向东,近1#伸缩缝处,桥面大理石砖下陷两块,破损两块,毛岸里桥由西向东,近1#伸缩缝处,桥面大理石砖下陷两块,破损两块', '1274', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1275', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.25465', '1', '2024-03-05 09:05:24.25465', '1', 1, '320213', NULL, '1', '0101000020B011000088F80E179D538341BE67EB8C3CB04A41', NULL, NULL, '2023-05-31 00:00:00', NULL, '损坏程度:轻,广北大桥由西向东,1#伸缩缝右侧路缘石破损一处', '1275', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1276', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.258343', '1', '2024-03-05 09:05:24.258343', '1', 1, '320213', NULL, '1', '0101000020B0110000469AB1CA12538341E5175EDD6EAC4A41', NULL, NULL, '2023-05-31 00:00:00', NULL, '损坏类型:破损,东北侧推坡道大理石砖缺损三块(每块30cm*30cm)', '1276', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1277', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.262365', '1', '2024-03-05 09:05:24.262365', '1', 1, '320213', NULL, '1', '0101000020B011000007184F989653834193917A7FC1B04A41', NULL, NULL, '2023-12-13 00:00:00', NULL, '损坏位置:积善桥由北向南人行道处,道板砖开裂破损', '1277', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1278', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.266244', '1', '2024-03-05 09:05:24.266244', '1', 1, '320213', NULL, '1', '0101000020B01100009D586E4815538341BB614D5FECB14A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺损一块(19cm*19cm),局部轻微', '1278', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1279', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.269992', '1', '2024-03-05 09:05:24.269992', '1', 1, '320213', NULL, '1', '0101000020B0110000E17F2BEAE85283416090F4FF3DAD4A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏程度:轻,局部轻微', '1279', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1282', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.273851', '1', '2024-03-05 09:05:24.273851', '1', 1, '320213', NULL, '1', '0101000020B01100007F479BA60F5383414D3E045319B44A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏位置:伸缩缝,伸缩缝垃圾堵塞', '1282', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1283', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.278279', '1', '2024-03-05 09:05:24.278279', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏程度:轻,东面桥栏杆局部锈蚀', '1283', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1284', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.282148', '1', '2024-03-05 09:05:24.282148', '1', 1, '320213', NULL, '1', '0101000020B0110000803F75E33A5383419424CF53BBB24A41', NULL, NULL, '2023-12-12 00:00:00', NULL, '损坏程度:轻,伸缩缝有垃圾', '1284', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1285', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.286434', '1', '2024-03-05 09:05:24.286434', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '1285', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1286', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.291096', '1', '2024-03-05 09:05:24.291096', '1', 1, '320213', NULL, '1', '0101000020B0110000058F3670235383410724EF04259F4A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏类型:损坏,局部轻微', '1286', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1287', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.296011', '1', '2024-03-05 09:05:24.296011', '1', 1, '320213', NULL, '1', '0101000020B01100008967903F02538341298E036993944A41', NULL, NULL, '2023-12-06 00:00:00', NULL, '损坏程度:轻,博学桥北向南桥面砖缺失一块松动五', '1287', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1288', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.299656', '1', '2024-03-05 09:05:24.299656', '1', 1, '320213', NULL, '1', '0101000020B0110000E49387E3FD528341FA5F599BACAE4A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:其他,道板砖松动一块', '1288', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1289', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.303603', '1', '2024-03-05 09:05:24.303603', '1', 1, '320213', NULL, '1', '0101000020B0110000457441DD0253834136A6EE28CCA24A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏位置:南侧推坡道口道板砖缺损两块(每块19cm*19cm),局部轻微', '1289', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1290', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.307501', '1', '2024-03-05 09:05:24.307501', '1', 1, '320213', NULL, '1', '0101000020B01100003515A98A2D538341932DCB45049F4A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:损坏,局部轻微', '1290', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1291', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.311377', '1', '2024-03-05 09:05:24.311377', '1', 1, '320213', NULL, '1', '0101000020B01100006D8BB244C85283413DA5F58366A24A41', NULL, NULL, '2023-12-05 00:00:00', NULL, '损坏类型:损坏,局部轻微', '1291', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1292', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.315131', '1', '2024-03-05 09:05:24.315131', '1', 1, '320213', NULL, '1', '0101000020B0110000DDC0161CC9528341D98E1B4013A14A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏位置:由北往南人行道道板砖缺失两块(每块19cmn*19cm),局部轻微', '1292', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1293', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.319048', '1', '2024-03-05 09:05:24.319048', '1', 1, '320213', NULL, '1', '0101000020B0110000726256F5AE53834176D575B64FAA4A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏位置:江海路人行天桥由北向南非机动车道上坡处,大理石砖破损一块,江海路人行天桥由北向南非机动车道上坡处,大理石砖破损一块', '1293', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1294', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.323245', '1', '2024-03-05 09:05:24.323245', '1', 1, '320213', NULL, '1', '0101000020B0110000F5B01081EA5283415792759C8AB14A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏程度:中,瓷砖破损', '1294', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1295', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.327999', '1', '2024-03-05 09:05:24.327999', '1', 1, '320213', NULL, '1', '0101000020B0110000F5B01081EA5283415792759C8AB14A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏位置:山北大桥南辅道桥由西向东靠西侧人行梯道处,有坑塘,损伤面积约一个平方', '1295', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1296', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.333456', '1', '2024-03-05 09:05:24.333456', '1', 1, '320213', NULL, '1', '0101000020B01100009C8FEBA333538341CC1682AA6E8D4A41', NULL, NULL, '2023-12-04 00:00:00', NULL, '损坏位置:方湖桥东往西,桥面砖缺失三块', '1296', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1297', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.337368', '1', '2024-03-05 09:05:24.337368', '1', 1, '320213', NULL, '1', '0101000020B011000082B1C5B2EC528341BF6C906FAFA54A41', NULL, NULL, '2023-12-03 00:00:00', NULL, '损坏类型:损坏,由北往南人行道道板砖破损松动共两块', '1297', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1298', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.342236', '1', '2024-03-05 09:05:24.342236', '1', 1, '320213', NULL, '1', '0101000020B0110000771EDC9628538341E29AADF01FAC4A41', NULL, NULL, '2023-12-03 00:00:00', NULL, '损坏位置:由东往西桥名牌旁机动车道沥青路面破损露筋一处,局部轻微', '1298', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1299', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.346181', '1', '2024-03-05 09:05:24.346181', '1', 1, '320213', NULL, '1', '0101000020B0110000DBBBBF9084538341961E4D693FB04A41', NULL, NULL, '2023-12-03 00:00:00', NULL, '损坏类型:损坏,黄泥头桥由南向北,桥面道板砖缺失松动两块', '1299', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1300', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.349948', '1', '2024-03-05 09:05:24.349948', '1', 1, '320213', NULL, '1', '0101000020B01100001E476C1B56538341C1C16C6EC3B54A41', NULL, NULL, '2023-12-01 00:00:00', NULL, '损坏程度:轻,通裕桥由南向北,桥面道板砖松动两块', '1300', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1301', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.353525', '1', '2024-03-05 09:05:24.353525', '1', 1, '320213', NULL, '1', '0101000020B011000072E26413C052834134DEE43BFBA64A41', NULL, NULL, '2023-11-26 00:00:00', NULL, '损坏类型:破损,锚固区破损(左侧车道)', '1301', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.385', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1302', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.358386', '1', '2024-03-05 09:05:24.358386', '1', 1, '320213', NULL, '1', '0101000020B0110000BD74137EDD5283410CCF4BC5E59F4A41', NULL, NULL, '2023-10-24 00:00:00', NULL, '人行道,局部轻微', '1302', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.385', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_501', '5', '栏杆', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.362312', '1', '2024-03-05 09:05:24.362312', '1', 1, '320213', NULL, '1', '0101000020B0110000D4E3B7887053834180B9A4B277B04A41', NULL, NULL, '2023-09-25 00:00:00', NULL, '损坏类型:破损,防撞墙被剐蹭,损伤面积约一个平方', '501', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_539', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.366138', '1', '2024-03-05 09:05:24.366138', '1', 1, '320213', NULL, '1', '0101000020B0110000AFE129B3155383416130B8DCD9A74A41', NULL, NULL, '2023-09-19 00:00:00', NULL, '损坏位置:由东往西第三条伸缩缝东侧,左侧机动车道沥青路面修补处破损露筋(30,局部轻微', '539', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:01:38.8', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_642', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.370042', '1', '2024-03-05 09:05:24.370042', '1', 1, '320213', NULL, '1', '0101000020B0110000F95D91527153834173E1B23834A24A41', NULL, NULL, '2023-09-08 00:00:00', NULL, '损坏类型:破损,防撞墙破损,损伤面积约0.5平方', '642', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:07.495', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_701', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.374356', '1', '2024-03-05 09:05:24.374356', '1', 1, '320213', NULL, '1', '0101000020B01100008D701AD5EC528341FF5B575C0AA64A41', NULL, NULL, '2023-09-01 00:00:00', NULL, '损坏位置:青祁路高架由南向北6#伸缩缝,锚固区破损(第一,三车道)', '701', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_742', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.378482', '1', '2024-03-05 09:05:24.378482', '1', 1, '320213', NULL, '1', '0101000020B0110000B23E179ADF538341C2D6DE11AFA74A41', NULL, NULL, '2023-08-25 00:00:00', NULL, '损坏类型:破损,沥青坑塘,损伤面积约3个平方', '742', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:03:47.993', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1101', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.382158', '1', '2024-03-05 09:05:24.382158', '1', 1, '320213', NULL, '1', '0101000020B01100001CF5501032538341534D9E7C37AA4A41', NULL, NULL, '2023-06-28 00:00:00', NULL, '损坏程度:轻,侧石破损', '1101', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1145', '5', '上部结构', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.386143', '1', '2024-03-05 09:05:24.386143', '1', 1, '320213', NULL, '1', '0101000020B0110000FA37614597538341410A493CD6AF4A41', NULL, NULL, '2023-06-16 00:00:00', NULL, '损坏位置:锡虞立交EN匝道由东往北LD004处,防撞墙被剐蹭,损伤面积约1个平方', '1145', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1178', '5', '人行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.389901', '1', '2024-03-05 09:05:24.389901', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-06-13 00:00:00', NULL, '损坏类型:破损,桥面砖破损松动', '1178', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1182', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.394163', '1', '2024-03-05 09:05:24.394163', '1', 1, '320213', NULL, '1', '0101000020B01100002D50190942538341BBE7F94F019F4A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:东侧慢车道,伸缩缝堵塞', '1182', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1183', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.398101', '1', '2024-03-05 09:05:24.398101', '1', 1, '320213', NULL, '1', '0101000020B01100001587736E155383410234115899B14A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏位置:凤翔立交ES匝道9#伸缩缝由东往南3米处,防撞墙被剐蹭,损伤面积约5㎡', '1183', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1189', '5', '限高牌/限载牌', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.401875', '1', '2024-03-05 09:05:24.401875', '1', 1, '320213', NULL, '1', '0101000020B0110000CC539D13055383414617D461B9954A41', NULL, NULL, '2023-06-12 00:00:00', NULL, '损坏程度:轻,限载牌倾斜', '1189', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.353', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1203', '5', '伸缩缝', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.405817', '1', '2024-03-05 09:05:24.405817', '1', 1, '320213', NULL, '1', '0101000020B011000087D29EFDF95283417AE1CEDFD29C4A41', NULL, NULL, '2023-06-10 00:00:00', NULL, '损坏类型:其他,伸缩缝垃圾', '1203', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1207', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.409707', '1', '2024-03-05 09:05:24.409707', '1', 1, '320213', NULL, '1', '0101000020B01100006D0895DD03538341788923D76D984A41', NULL, NULL, '2023-06-09 00:00:00', NULL, '损坏程度:轻,泄水井盖缺失1只', '1207', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1241', '5', '车行道', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.413285', '1', '2024-03-05 09:05:24.413285', '1', 1, '320213', NULL, '1', '0101000020B01100006CB79DC097538341ED5A7B57DAAF4A41', NULL, NULL, '2023-06-06 00:00:00', NULL, '损坏类型:其他,有两处沥青坑塘,面积约1㎡', '1241', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
- INSERT INTO "archives_risk" ("id", "scene", "name", "type", "level", "keyword", "annex", "create_time", "create_user", "update_time", "update_user", "del_flag", "area", "is_often", "dispose_progress", "kjxx", "zrdw", "pgdw", "pgsj", "dlwz", "fxms", "bsm", "childtype", "code", "table", "tbsj", "pgfz") VALUES ('ql_jg_fxpg_1243', '5', '排水设施', NULL, '1', NULL, NULL, '2024-03-05 09:05:24.416919', '1', '2024-03-05 09:05:24.416919', '1', 1, '320213', NULL, '1', '0101000020B01100006001132D805383414FB81EB901A34A41', NULL, NULL, '2023-06-05 00:00:00', NULL, '损坏位置:金城路立交兴源路主线由南向北37#墩柱处,落水管损坏', '1243', NULL, '桥梁', 'ql_jg_fxpg', '2023-12-22 00:05:35.372', '60.00');
|