123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505 |
- <html xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:x="urn:schemas-microsoft-com:office:excel"
- xmlns="http://www.w3.org/TR/REC-html40">
- <head>
- <meta http-equiv=Content-Type content="text/html; charset=x-mac-chinesesimp">
- <meta name=ProgId content=Excel.Sheet>
- <meta name=Generator content="Microsoft Excel 15">
- <link id=Main-File rel=Main-File href="../tdetail.htm">
- <link rel=File-List href=filelist.xml>
- <link rel=Stylesheet href=stylesheet.css>
- <style>
- <!--table
- {mso-displayed-decimal-separator:"\.";
- mso-displayed-thousand-separator:"\,";}
- @page
- {margin:.75in .7in .75in .7in;
- mso-header-margin:.3in;
- mso-footer-margin:.3in;}
- ruby
- {ruby-align:left;}
- rt
- {color:windowtext;
- font-size:9.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- mso-char-type:none;
- display:none;}
- -->
- </style>
- <![if !supportTabStrip]><script language="JavaScript">
- <!--
- function fnUpdateTabs()
- {
- if (parent.window.g_iIEVer>=4) {
- if (parent.document.readyState=="complete"
- && parent.frames['frTabs'].document.readyState=="complete")
- parent.fnSetActiveSheet(1);
- else
- window.setTimeout("fnUpdateTabs();",150);
- }
- }
- if (window.name!="frSheet")
- window.location.replace("../tdetail.htm");
- else
- fnUpdateTabs();
- //-->
- </script>
- <![endif]>
- </head>
- <body link=blue vlink=purple>
- <table border=0 cellpadding=0 cellspacing=0 width=1371 style='border-collapse:
- collapse;table-layout:fixed;width:1028pt'>
- <col class=xl74 width=48 style='mso-width-source:userset;mso-width-alt:1536;
- width:36pt'>
- <col class=xl75 width=251 style='mso-width-source:userset;mso-width-alt:8021;
- width:188pt'>
- <col class=xl75 width=265 style='mso-width-source:userset;mso-width-alt:8490;
- width:199pt'>
- <col class=xl75 width=76 style='mso-width-source:userset;mso-width-alt:2432;
- width:57pt'>
- <col class=xl75 width=108 style='mso-width-source:userset;mso-width-alt:3456;
- width:81pt'>
- <col width=64 style='mso-width-source:userset;mso-width-alt:2048;width:48pt'>
- <col width=87 span=2 style='mso-width-source:userset;mso-width-alt:2773;
- width:65pt'>
- <col class=xl76 width=97 style='mso-width-source:userset;mso-width-alt:3114;
- width:73pt'>
- <col class=xl76 width=72 style='mso-width-source:userset;mso-width-alt:2304;
- width:54pt'>
- <col class=xl76 width=69 style='mso-width-source:userset;mso-width-alt:2218;
- width:52pt'>
- <col width=147 style='mso-width-source:userset;mso-width-alt:4693;width:110pt'>
- <col width=72 style='width:54pt'>
- <col width=93 style='mso-width-source:userset;mso-width-alt:2986;width:70pt'>
- <tr height=28 style='mso-height-source:userset;height:21.75pt'>
- <td height=28 class=xl77 colspan=2 width=299 style='height:21.75pt;
- mso-ignore:colspan;width:224pt'>备料计划控制表</td>
- <td class=xl78 colspan=6 width=687 style='mso-ignore:colspan;width:515pt'>注:物资明细由备料计划录入信息表合并同类项得来,此表查询备料计划<span
- style='display:none'>执行情况。可查看备料是否有合同,是否下供货通知,是否到货,是否发货</span></td>
- <td class=xl87 width=97 style='width:73pt'> </td>
- <td class=xl87 width=72 style='width:54pt'> </td>
- <td class=xl87 width=69 style='width:52pt'> </td>
- <td class=xl77 width=147 style='width:110pt'></td>
- </tr>
- <tr class=xl72 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;width:36pt'>序号</td>
- <td class=xl79 width=251 style='border-left:none;width:188pt'>物资名称</td>
- <td class=xl79 width=265 style='border-left:none;width:199pt'>型号规格</td>
- <td class=xl79 width=76 style='border-left:none;width:57pt'>物资标识</td>
- <td class=xl79 width=108 style='border-left:none;width:81pt'>质量标准技术要求</td>
- <td class=xl79 width=64 style='border-left:none;width:48pt'>计量单位</td>
- <td class=xl80 width=87 style='border-left:none;width:65pt'>备料计划数量</td>
- <td class=xl80 width=87 style='width:65pt'>合同数量</td>
- <td class=xl88 width=97 style='width:73pt'>供货通知单数量</td>
- <td class=xl88 width=72 style='border-left:none;width:54pt'>到货数量</td>
- <td class=xl88 width=69 style='border-left:none;width:52pt'>发出数量</td>
- <td class=xl79 width=147 style='border-left:none;width:110pt'>备注</td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>1</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>并联硬锚底座</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0124(300)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000001</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-8</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>600</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>2</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>250型馈线固定底座</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H250)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000002</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>400</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>3</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>300型馈线固定底座</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H300)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000003</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>600</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>4</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>300*660型馈线固定底座</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H300*660)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000004</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>5</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>Z-7挂板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000005</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>6</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>P-7挂板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000006</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>7</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'><span
- style='mso-spacerun:yes'> </span>P-16挂板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000007</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>8</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D1型双联板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL42(D1)-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000008</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-6</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>9</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡绝缘联板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0121</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000009</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-7</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>10</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>下锚绝缘子</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XJ-1.5A</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000010</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-1</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>11</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D3型电连接线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL05(D3)-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000011</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-4</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>12</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D4型电连接线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL05(D4)-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000012</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-4</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>13</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直式接触线电连接线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL04(Z)-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000013</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-3</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>14</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>三线馈线线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GDC19-98(改)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000014</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-12</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>15</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>双线等距线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GDC18-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000015</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-10</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>16</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>承力索终锚线夹</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL27(T150)-98</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000016</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-5</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>17</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>Z-10型挂板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000017</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>18</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>调整螺栓</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL89AA</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000018</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-13</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>19</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>合成绝缘棒</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>HJ-1.5M(红色)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000019</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-2</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>20</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>馈线支持座</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0141</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000020</td>
- <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-10</td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>21</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>150mm2铜接线端子</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTG-185型/GB14315</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000021</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>22</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>400mm2铜接线端子</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTG-400型/GB14315</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000022</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>23</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆抱箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0140</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000023</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=35 style='height:26.0pt'>
- <td height=35 class=xl79 width=48 style='height:26.0pt;border-top:none;
- width:36pt'>24</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定架</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL25-99(该电缆固定架固定5根400mm2电缆,图纸中将33mm改为100mm,L=350mm)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000024</td>
- <td class=xl82 style='border-top:none;border-left:none'>安装图册-1<span
- style='display:none'>1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=35 style='height:26.0pt'>
- <td height=35 class=xl79 width=48 style='height:26.0pt;border-top:none;
- width:36pt'>25</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定架</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL25-99(该电缆固定架固定5根150mm2电缆,图纸中将33mm改为50mm,L=230mm)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000025</td>
- <td class=xl82 style='border-top:none;border-left:none'>安装图册-1<span
- style='display:none'>1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>26</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>螺栓M16x60</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB5781-86</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000026</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-4</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>27</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>螺母
- M16</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB6170-86</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000027</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-4</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>28</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>垫圈
- 16</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB95-85</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000028</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-4</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>29</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>垫圈
- 16</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB93-87</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000029</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-4</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>30</td>
- <td class=xl83 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定卡</td>
- <td class=xl83 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL24-99</td>
- <td class=xl83 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000030</td>
- <td class=xl84 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl85 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>31</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>后扩底螺栓(含2个螺母、1个平垫圈、1个弹性垫圈)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M10</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000031</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-8</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>32</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>腕臂电缆扎带(刚扎带)</td>
- <td class=xl86 width=265 style='border-top:none;border-left:none;width:199pt'>5*500</td>
- <td class=xl86 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000032</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-5</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>33</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>热缩管</td>
- <td class=xl86 width=265 style='border-top:none;border-left:none;width:199pt'>Ф50</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000033</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-6</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>34</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>热缩管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Ф25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000034</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-6</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>35</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XL</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000035</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>36</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XXL</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000036</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>37</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XXXL</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000037</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>38</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全帽</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>黄色</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000038</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>顶</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>39</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>急救药箱</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>含常用药品</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000039</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>40</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨衣</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000040</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>41</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨靴</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000041</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>双</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>42</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>强光手电</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000042</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>43</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全帽</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>黄色</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000038</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>顶</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>44</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>急救药箱</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>含常用药品</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000039</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>45</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨衣</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000040</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>46</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨靴</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000041</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>双</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>47</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全带</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>全身型</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000043</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>48</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全警示带</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>红白色</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000044</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>卷</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>49</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*4.5mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000045</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>50</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100*4mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000046</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>51</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*4mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000047</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>52</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*4mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000048</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>53</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN50*3.8mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000049</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>54</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40*3.5mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000050</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>55</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32*3.5mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000051</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>56</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25*3.2mm</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000052</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-1</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>57</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000053</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>58</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000054</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>59</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32*25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000055</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>60</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000056</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>61</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>外丝直接</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N15</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000057</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>62</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>外丝直接</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N25</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000058</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>63</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N25*15</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000059</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>64</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N25*20</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000060</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>65</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N32*15</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000061</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>66</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N32*20</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000062</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>67</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N65*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000063</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>68</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N25*25*25</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000064</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>69</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N32*32*32</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000065</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>70</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N32*40*32</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000066</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>71</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N40*32*32</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000067</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>72</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40*32*40</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000068</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>73</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN40*</font><font class="font11">40*32</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000069</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>74</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N40*65*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000070</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>75</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN50*32*40</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000071</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>76</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN65*</font><font class="font11">32*50</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000072</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>77</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN65*32</font><font class="font11">*65</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000073</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>78</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*40*40</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000074</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>79</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*40*65</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000075</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>80</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN80*</font><font class="font11">32*65</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000076</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>81</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN80*</font><font class="font11">32*80</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000077</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>82</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*40*65</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000078</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>83</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N80*40*65*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000079</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>84</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*40*80*40</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000080</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>85</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN1</font><font class="font11">00*100*100</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000081</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>86</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*150*150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000082</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>87</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN150*150*150*</font><font class="font11">150</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000083</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>88</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N100*40*100</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000084</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>89</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*25*150</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000085</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>90</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*32*150</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000086</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>91</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*40*150</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000087</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>92</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N100*40*100*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000088</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>93</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N100*65*100*65</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000089</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>94</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N100*80*100*80</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000090</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>95</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*40*150*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000091</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>96</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*65*150*65</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000092</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>97</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150*80*150*80</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000093</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>98</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN1</font><font class="font11">50*40</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000094</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>99</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">DN100*</font><font class="font11">65</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000095</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>100</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100*80</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000096</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>101</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式异径管箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*100</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000097</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>102</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式90°弯头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000098</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>103</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽法兰</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000099</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>104</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000100</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>105</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡箍</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000101</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-2</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>106</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌螺栓(配螺帽、一个弹簧垫、2个平垫)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M18*150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000102</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>107</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>法兰密封橡胶垫</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">D</font><font class="font11">N150</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000103</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>108</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>信号蝶阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000104</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>109</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>水流指示器(马鞍形)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000105</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>110</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN15</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000106</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>111</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000107</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>112</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000108</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>113</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>压力表</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>0-1.6MPa</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000109</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>114</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>表弯</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN15</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000110</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>115</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>自动排气阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000111</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>116</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直立型喷头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
- class="font10">ZSTZ-15/68(K</font><font class="font11">=80 DN15)</font></td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000112</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>117</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直立型喷头</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>ZSTZ-20/68(K=115
- DN20)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000113</td>
- <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
- style='display:none'>之前标准</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>118</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>大红油漆</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>13公斤/桶</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000114</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>桶</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>119</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>木跳板</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>2m(长)*5cm(厚)*20cm(宽)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000115</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>块</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>120</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜内外丝直接</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000116</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>121</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>不锈钢扎带</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>1米/条(宽度:1cm;厚度:0.05mm)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000117</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>122</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>不锈钢扎带</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>0.5米/条(宽度:1cm;厚度:0.05mm)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000118</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>123</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>膨胀螺丝</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M6*8</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000119</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>盒</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>124</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>板牙</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000120</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>付</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>125</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电动球阀</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>BV03G2D32SA/220</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000121</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>126</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>240mm2(长)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000122</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>127</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>240mm2(短)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000123</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>128</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>120mm2(长)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000124</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>129</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>120mm2(短)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000125</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>130</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>PVC排水直接</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000126</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>131</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>水泥</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000127</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>包</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>132</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>橡塑保温板材</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>厚度25mm(容重48kg/m3)</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000128</td>
- <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
- style='display:none'>-3</span></td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>平方</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>133</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铝箔胶带</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000129</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>卷</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>134</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌线管直接</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000130</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>135</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>离墙码</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000131</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>136</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>六角钻尾螺丝</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>3cm长</td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000132</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>包</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>137</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>玻璃胶(白色)</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000133</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>支</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'>138</td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>毛巾</td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000134</td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
- <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
- width:36pt'> </td>
- <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
- <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
- <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
- <td class=xl82 style='border-top:none;border-left:none'> </td>
- <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
- <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
- <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
- <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
- <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
- </tr>
- </table>
- </body>
- </html>
|