123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598 |
- <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=utf-8"/>
- <meta name="ProgId" content="Excel.Sheet"/>
- <meta name="Generator" content="WPS Office ET"/>
- <!--[if gte mso 9]>
- <xml>
- <o:DocumentProperties>
- <o:Created>2021-12-29T15:54:48</o:Created>
- <o:LastSaved>2021-12-29T16:39:47</o:LastSaved>
- </o:DocumentProperties>
- <o:CustomDocumentProperties>
- <o:KSOProductBuildVer dt:dt="string">2052-1.5.2.2273</o:KSOProductBuildVer>
- </o:CustomDocumentProperties>
- </xml>
- <![endif]-->
- <style>
- <!-- @page
- {margin:0.98in 0.75in 0.98in 0.75in;
- mso-header-margin:0.51in;
- mso-footer-margin:0.51in;}
- tr
- {mso-height-source:auto;
- mso-ruby-visibility:none;}
- col
- {mso-width-source:auto;
- mso-ruby-visibility:none;}
- br
- {mso-data-placement:same-cell;}
- .font0
- {color:#000000;
- font-size:12.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font1
- {color:#FF0000;
- font-size:10.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"Arial Unicode MS";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font2
- {color:#000000;
- font-size:10.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"Arial Unicode MS";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font3
- {color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"Calibri";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font4
- {color:#000000;
- font-size:10.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"Arial Unicode MS";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font5
- {color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"华文宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font6
- {color:#FA7D00;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font7
- {color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font8
- {color:#44546A;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font9
- {color:#44546A;
- font-size:18.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font10
- {color:#44546A;
- font-size:13.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font11
- {color:#800080;
- font-size:12.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:underline;
- text-underline-style:single;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font12
- {color:#0000FF;
- font-size:12.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:underline;
- text-underline-style:single;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font13
- {color:#FF0000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font14
- {color:#44546A;
- font-size:15.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:134;}
- .font15
- {color:#3F3F3F;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font16
- {color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font17
- {color:#FA7D00;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font18
- {color:#9C0006;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font19
- {color:#006100;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font20
- {color:#7F7F7F;
- font-size:11.0pt;
- font-weight:400;
- font-style:italic;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font21
- {color:#000000;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font22
- {color:#3F3F76;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font23
- {color:#9C6500;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font24
- {color:#FFFFFF;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:"宋体";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .font25
- {color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:"Calibri";
- mso-generic-font-family:auto;
- mso-font-charset:0;}
- .style0
- {mso-number-format:"General";
- text-align:general;
- vertical-align:middle;
- white-space:nowrap;
- mso-rotate:0;
- mso-pattern:auto;
- mso-background-source:auto;
- color:#000000;
- font-size:12.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- border:none;
- mso-protection:locked visible;
- mso-style-name:"常规";
- mso-style-id:0;}
- .style16
- {mso-pattern:auto none;
- background:#A9D08E;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 6";}
- .style17
- {mso-pattern:auto none;
- background:#FFF2CC;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 4";}
- .style18
- {mso-pattern:auto none;
- background:#FFC000;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 4";}
- .style19
- {mso-pattern:auto none;
- background:#FFCC99;
- color:#3F3F76;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border:.5pt solid #7F7F7F;
- mso-style-name:"输入";}
- .style20
- {mso-pattern:auto none;
- background:#DBDBDB;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 3";}
- .style21
- {mso-pattern:auto none;
- background:#EDEDED;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 3";}
- .style22
- {mso-number-format:"_ \0022\00A5\0022* \#\,\#\#0\.00_ \;_ \0022\00A5\0022* \\-\#\,\#\#0\.00_ \;_ \0022\00A5\0022* \0022-\0022??_ \;_ \@_ ";
- mso-style-name:"货币";
- mso-style-id:4;}
- .style23
- {mso-pattern:auto none;
- background:#A5A5A5;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 3";}
- .style24
- {mso-number-format:"0%";
- mso-style-name:"百分比";
- mso-style-id:5;}
- .style25
- {mso-pattern:auto none;
- background:#F4B084;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 2";}
- .style26
- {mso-pattern:auto none;
- background:#8EA9DB;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 5";}
- .style27
- {mso-pattern:auto none;
- background:#ED7D31;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 2";}
- .style28
- {mso-pattern:auto none;
- background:#9BC2E6;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 1";}
- .style29
- {mso-pattern:auto none;
- background:#FFD966;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 4";}
- .style30
- {mso-pattern:auto none;
- background:#F2F2F2;
- color:#FA7D00;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border:.5pt solid #7F7F7F;
- mso-style-name:"计算";}
- .style31
- {mso-pattern:auto none;
- background:#5B9BD5;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 1";}
- .style32
- {mso-pattern:auto none;
- background:#FFEB9C;
- color:#9C6500;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"适中";}
- .style33
- {mso-pattern:auto none;
- background:#D9E1F2;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 5";}
- .style34
- {mso-pattern:auto none;
- background:#C6EFCE;
- color:#006100;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"好";}
- .style35
- {mso-pattern:auto none;
- background:#DDEBF7;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 1";}
- .style36
- {color:#000000;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border-top:.5pt solid #5B9BD5;
- border-bottom:2.0pt double #5B9BD5;
- mso-style-name:"汇总";}
- .style37
- {mso-pattern:auto none;
- background:#FFC7CE;
- color:#9C0006;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"差";}
- .style38
- {mso-pattern:auto none;
- background:#A5A5A5;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border:2.0pt double #3F3F3F;
- mso-style-name:"检查单元格";}
- .style39
- {mso-pattern:auto none;
- background:#F2F2F2;
- color:#3F3F3F;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border:.5pt solid #3F3F3F;
- mso-style-name:"输出";}
- .style40
- {color:#44546A;
- font-size:15.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- border-bottom:1.0pt solid #5B9BD5;
- mso-style-name:"标题 1";}
- .style41
- {color:#7F7F7F;
- font-size:11.0pt;
- font-weight:400;
- font-style:italic;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"解释性文本";}
- .style42
- {mso-pattern:auto none;
- background:#FCE4D6;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 2";}
- .style43
- {color:#44546A;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- mso-style-name:"标题 4";}
- .style44
- {mso-number-format:"_ \0022\00A5\0022* \#\,\#\#0_ \;_ \0022\00A5\0022* \\-\#\,\#\#0_ \;_ \0022\00A5\0022* \0022-\0022_ \;_ \@_ ";
- mso-style-name:"货币[0]";
- mso-style-id:7;}
- .style45
- {mso-pattern:auto none;
- background:#FFE699;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 4";}
- .style46
- {mso-number-format:"_ * \#\,\#\#0\.00_ \;_ * \\-\#\,\#\#0\.00_ \;_ * \0022-\0022??_ \;_ \@_ ";
- mso-style-name:"千位分隔";
- mso-style-id:3;}
- .style47
- {color:#800080;
- font-size:12.0pt;
- text-decoration:underline;
- text-underline-style:single;
- font-family:宋体;
- mso-style-name:"已访问的超链接";
- mso-style-id:9;}
- .style48
- {color:#44546A;
- font-size:18.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- mso-style-name:"标题";}
- .style49
- {mso-pattern:auto none;
- background:#F8CBAD;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 2";}
- .style50
- {color:#FF0000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"警告文本";}
- .style51
- {mso-pattern:auto none;
- background:#C9C9C9;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"60% - 强调文字颜色 3";}
- .style52
- {mso-pattern:auto none;
- background:#FFFFCC;
- border:.5pt solid #B2B2B2;
- mso-style-name:"注释";}
- .style53
- {mso-pattern:auto none;
- background:#E2EFDA;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"20% - 强调文字颜色 6";}
- .style54
- {mso-pattern:auto none;
- background:#4472C4;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 5";}
- .style55
- {mso-pattern:auto none;
- background:#C6E0B4;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 6";}
- .style56
- {color:#0000FF;
- font-size:12.0pt;
- text-decoration:underline;
- text-underline-style:single;
- font-family:宋体;
- mso-style-name:"超链接";
- mso-style-id:8;}
- .style57
- {mso-number-format:"_ * \#\,\#\#0_ \;_ * \\-\#\,\#\#0_ \;_ * \0022-\0022_ \;_ \@_ ";
- mso-style-name:"千位分隔[0]";
- mso-style-id:6;}
- .style58
- {color:#44546A;
- font-size:13.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- border-bottom:1.0pt solid #5B9BD5;
- mso-style-name:"标题 2";}
- .style59
- {mso-pattern:auto none;
- background:#B4C6E7;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 5";}
- .style60
- {color:#44546A;
- font-size:11.0pt;
- font-weight:700;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- border-bottom:1.0pt solid #ACCCEA;
- mso-style-name:"标题 3";}
- .style61
- {mso-pattern:auto none;
- background:#70AD47;
- color:#FFFFFF;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"强调文字颜色 6";}
- .style62
- {mso-pattern:auto none;
- background:#BDD7EE;
- color:#000000;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- mso-style-name:"40% - 强调文字颜色 1";}
- .style63
- {color:#FA7D00;
- font-size:11.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:0;
- border-bottom:2.0pt double #FF8001;
- mso-style-name:"链接单元格";}
- td
- {mso-style-parent:style0;
- padding-top:1px;
- padding-right:1px;
- padding-left:1px;
- mso-ignore:padding;
- mso-number-format:"General";
- text-align:general;
- vertical-align:middle;
- white-space:nowrap;
- mso-rotate:0;
- mso-pattern:auto;
- mso-background-source:auto;
- color:#000000;
- font-size:12.0pt;
- font-weight:400;
- font-style:normal;
- text-decoration:none;
- font-family:宋体;
- mso-generic-font-family:auto;
- mso-font-charset:134;
- border:none;
- mso-protection:locked visible;}
- .xl65
- {mso-style-parent:style0;
- mso-pattern:auto none;
- background:#F1F1F1;
- mso-font-charset:134;}
- .xl66
- {mso-style-parent:style0;
- text-align:center;
- white-space:normal;
- mso-pattern:auto none;
- background:#CDF79E;
- color:#FF0000;
- font-size:10.0pt;
- font-family:Arial Unicode MS;
- mso-font-charset:134;
- border:.5pt solid #000000;}
- .xl67
- {mso-style-parent:style0;
- text-align:center;
- white-space:normal;
- mso-pattern:auto none;
- background:#CDF79E;
- font-size:10.0pt;
- font-weight:700;
- font-family:Arial Unicode MS;
- mso-font-charset:134;
- border:.5pt solid #000000;}
- .xl68
- {mso-style-parent:style0;
- vertical-align:bottom;
- font-size:11.0pt;
- font-family:Calibri;
- mso-font-charset:0;}
- .xl69
- {mso-style-parent:style0;
- text-align:center;
- white-space:normal;
- font-size:10.0pt;
- font-family:Arial Unicode MS;
- mso-font-charset:134;
- border:.5pt solid #000000;}
- .xl70
- {mso-style-parent:style0;
- text-align:center;
- white-space:normal;
- mso-font-charset:134;
- border:.5pt solid #000000;}
- .xl71
- {mso-style-parent:style0;
- text-align:center;
- white-space:normal;
- mso-pattern:auto none;
- background:#CDF79E;
- font-size:10.0pt;
- font-weight:700;
- font-family:Arial Unicode MS;
- mso-font-charset:134;
- border:.5pt solid #000000;}
- .xl72
- {mso-style-parent:style0;
- vertical-align:bottom;
- font-size:11.0pt;
- font-family:华文宋体;
- mso-font-charset:0;}
- --> </style>
- <!--[if gte mso 9]>
- <xml>
- <x:ExcelWorkbook>
- <x:ExcelWorksheets>
- <x:ExcelWorksheet>
- <x:Name>userimport</x:Name>
- <x:WorksheetOptions>
- <x:DefaultRowHeight>352</x:DefaultRowHeight>
- <x:StandardWidth>2340</x:StandardWidth>
- <x:Selected/>
- <x:Panes>
- <x:Pane>
- <x:Number>3</x:Number>
- <x:ActiveCol>5</x:ActiveCol>
- <x:ActiveRow>122</x:ActiveRow>
- <x:RangeSelection>F123:F161</x:RangeSelection>
- </x:Pane>
- </x:Panes>
- <x:DoNotDisplayGridlines/>
- <x:ProtectContents>False</x:ProtectContents>
- <x:ProtectObjects>False</x:ProtectObjects>
- <x:ProtectScenarios>False</x:ProtectScenarios>
- <x:Print>
- <x:PaperSizeIndex>9</x:PaperSizeIndex>
- </x:Print>
- </x:WorksheetOptions>
- </x:ExcelWorksheet>
- </x:ExcelWorksheets>
- <x:ProtectStructure>False</x:ProtectStructure>
- <x:ProtectWindows>False</x:ProtectWindows>
- <x:WindowHeight>11400</x:WindowHeight>
- <x:WindowWidth>28000</x:WindowWidth>
- </x:ExcelWorkbook>
- </xml>
- <![endif]-->
- </head>
- <body link="blue" vlink="purple">
- <table width="1171.55" border="0" cellpadding="0" cellspacing="0" style='width:1171.55pt;border-collapse:collapse;table-layout:fixed;'>
- <col width="64.80" style='mso-width-source:userset;mso-width-alt:2764;'/>
- <col width="89.15" style='mso-width-source:userset;mso-width-alt:3803;'/>
- <col width="54.85" style='mso-width-source:userset;mso-width-alt:2340;'/>
- <col width="76.35" style='mso-width-source:userset;mso-width-alt:3257;'/>
- <col width="490.85" style='mso-width-source:userset;mso-width-alt:20942;'/>
- <col width="73.55" style='mso-width-source:userset;mso-width-alt:3138;'/>
- <col width="104.15" style='mso-width-source:userset;mso-width-alt:4443;'/>
- <col width="97" style='mso-width-source:userset;mso-width-alt:4138;'/>
- <col width="120.85" style='mso-width-source:userset;mso-width-alt:5156;'/>
- <tr height="16.85" class="xl65" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl66" height="16.85" width="64.80" style='height:16.85pt;width:64.80pt;' x:str>*<font class="font2">姓名(name)</font></td>
- <td class="xl66" width="89.15" style='width:89.15pt;' x:str>*<font class="font2">用户名(user)</font></td>
- <td class="xl66" width="54.85" style='width:54.85pt;' x:str>*<font class="font2">性别(sex)</font></td>
- <td class="xl67" width="76.35" style='width:76.35pt;' x:str>手机号(mobile)</td>
- <td class="xl66" width="490.85" style='width:490.85pt;' x:str>*<font class="font2">部门(deptname)</font></td>
- <td class="xl71" width="73.55" style='width:73.55pt;' x:str>职位(ranking)</td>
- <td class="xl67" width="104.15" style='width:104.15pt;' x:str>上级主管(superman)</td>
- <td class="xl67" width="97" style='width:97.00pt;' x:str>电话(tel)</td>
- <td class="xl67" width="120.85" style='width:120.85pt;' x:str>邮箱(email)</td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨国林</td>
- <td class="xl68" align="right" x:num>15042504</td>
- <td class="xl68" x:str>男</td>
- <td class="xl69"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/部领导</td>
- <td class="xl68" x:str>部长</td>
- <td class="xl69"></td>
- <td class="xl69"></td>
- <td class="xl69"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨海军</td>
- <td class="xl68" align="right" x:num>15110427</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/部领导</td>
- <td class="xl68" x:str>副部长</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李靖</td>
- <td class="xl68" align="right" x:num>15036481</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>钱亚波</td>
- <td class="xl68" align="right" x:num>15036475</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
- <td class="xl68" x:str>一级专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>吴向东</td>
- <td class="xl68" align="right" x:num>15036361</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>查学刚</td>
- <td class="xl68" align="right" x:num>15036479</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>一级专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李建忠</td>
- <td class="xl68" align="right" x:num>15036474</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>站长</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>邵勇</td>
- <td class="xl68" align="right" x:num>15036504</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>副科长</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>吴承军</td>
- <td class="xl68" align="right" x:num>15036508</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>周保军</td>
- <td class="xl68" align="right" x:num>15036482</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>主管技术员</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>冯建兵</td>
- <td class="xl68" align="right" x:num>15036486</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>副站长</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闵磊</td>
- <td class="xl68" align="right" x:num>15036518</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>主管技术员</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马卫军</td>
- <td class="xl68" align="right" x:num>15035277</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>技术员</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王添</td>
- <td class="xl68" align="right" x:num>15036502</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>技术员</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>牛智星</td>
- <td class="xl68" align="right" x:num>15036503</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张启勇</td>
- <td class="xl68" align="right" x:num>15036352</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>汽车驾驶员</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>臧超</td>
- <td class="xl68" align="right" x:num>15103509</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>矿井通讯维护<span style='display:none;'>工</span></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王建军</td>
- <td class="xl68" align="right" x:num>15036490</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>矿井通讯维护<span style='display:none;'>工</span></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>物业公司</td>
- <td class="xl68" align="right" x:num>20210918</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>专责</td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张铁聪</td>
- <td class="xl68" align="right" x:num>20210617</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李亚婷</td>
- <td class="xl68" align="right" x:num>20050826</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>郑小娇</td>
- <td class="xl68" align="right" x:num>15036387</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>测试</td>
- <td class="xl68" align="right" x:num>12345678</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>肖丽婷</td>
- <td class="xl68" align="right" x:num>20050828</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨志刚</td>
- <td class="xl68" align="right" x:num>20050825</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>沙波</td>
- <td class="xl68" align="right" x:num>20050823</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏微新通信<span style='display:none;'>建设有限公司</span></td>
- <td class="xl68" align="right" x:num>651009</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>网络用户</td>
- <td class="xl68" align="right" x:num>1</td>
- <td class="xl68" x:str>男</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>天地常州王志<span style='display:none;'>军</span></td>
- <td class="xl68" align="right" x:num>651003</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>徐州博林司林<span style='display:none;'>龙</span></td>
- <td class="xl68" align="right" x:num>651004</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>武汉七环刘峰<span style='display:none;'></span></td>
- <td class="xl68" align="right" x:num>651005</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏杰唯许景<span style='display:none;'>龙</span></td>
- <td class="xl68" align="right" x:num>651006</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>山东科大张强<span style='display:none;'></span></td>
- <td class="xl68" align="right" x:num>651007</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>天地常州韩安<span style='display:none;'></span></td>
- <td class="xl68" align="right" x:num>651008</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>中煤重庆院胡<span style='display:none;'>士强</span></td>
- <td class="xl68" align="right" x:num>651002</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏捷泰华周<span style='display:none;'>军</span></td>
- <td class="xl68" align="right" x:num>651001</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李玉娟</td>
- <td class="xl68" align="right" x:num>15036336</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>梁君</td>
- <td class="xl68" align="right" x:num>15036345</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>申媛</td>
- <td class="xl68" align="right" x:num>15046358</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>谢洲</td>
- <td class="xl68" align="right" x:num>15054046</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘彩云</td>
- <td class="xl68" align="right" x:num>15036531</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王玉芹</td>
- <td class="xl68" align="right" x:num>15010039</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>官向栋</td>
- <td class="xl68" align="right" x:num>15036501</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李耀斌</td>
- <td class="xl68" align="right" x:num>15036505</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闫瑞</td>
- <td class="xl68" align="right" x:num>15036506</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李毅</td>
- <td class="xl68" align="right" x:num>15036517</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨苇</td>
- <td class="xl68" align="right" x:num>15036532</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>贺小云</td>
- <td class="xl68" align="right" x:num>15036444</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋龑</td>
- <td class="xl68" align="right" x:num>15111070</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>谢瑞</td>
- <td class="xl68" align="right" x:num>15020653</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李鑫</td>
- <td class="xl68" align="right" x:num>15036548</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王云飞</td>
- <td class="xl68" align="right" x:num>15008628</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王克俊</td>
- <td class="xl68" align="right" x:num>15032158</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张芳</td>
- <td class="xl68" align="right" x:num>15036498</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李志强</td>
- <td class="xl68" align="right" x:num>15036543</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>海煜</td>
- <td class="xl68" align="right" x:num>15036544</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>田媛</td>
- <td class="xl68" align="right" x:num>15036545</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>曹晓乐</td>
- <td class="xl68" align="right" x:num>15036547</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王森</td>
- <td class="xl68" align="right" x:num>15036335</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马旭</td>
- <td class="xl68" align="right" x:num>15036540</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>白宁</td>
- <td class="xl68" align="right" x:num>15036541</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘亚琼</td>
- <td class="xl68" align="right" x:num>15036542</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李新忠</td>
- <td class="xl68" align="right" x:num>15036534</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>唐骏</td>
- <td class="xl68" align="right" x:num>15036535</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>许文善</td>
- <td class="xl68" align="right" x:num>15036538</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>程智强</td>
- <td class="xl68" align="right" x:num>15036539</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张茂民</td>
- <td class="xl68" align="right" x:num>15036525</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>秦冬堂</td>
- <td class="xl68" align="right" x:num>15036523</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>何铅</td>
- <td class="xl68" align="right" x:num>15036524</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋海琴</td>
- <td class="xl68" align="right" x:num>15036528</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张伟</td>
- <td class="xl68" align="right" x:num>15036530</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>田峰</td>
- <td class="xl68" align="right" x:num>15036533</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘西宁</td>
- <td class="xl68" align="right" x:num>15036441</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘松芳</td>
- <td class="xl68" align="right" x:num>15036311</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>安玉红</td>
- <td class="xl68" align="right" x:num>15036313</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>郎旭</td>
- <td class="xl68" align="right" x:num>15036349</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李智敏</td>
- <td class="xl68" align="right" x:num>15036509</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>冯蕾</td>
- <td class="xl68" align="right" x:num>15036522</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王左君</td>
- <td class="xl68" align="right" x:num>15036546</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王强</td>
- <td class="xl68" align="right" x:num>15036292</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>沈艳莉</td>
- <td class="xl68" align="right" x:num>15036293</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张幼平</td>
- <td class="xl68" align="right" x:num>15036294</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>雷玲燕</td>
- <td class="xl68" align="right" x:num>15036295</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马伟</td>
- <td class="xl68" align="right" x:num>15036348</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>边杰</td>
- <td class="xl68" align="right" x:num>15036344</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王鲁</td>
- <td class="xl68" align="right" x:num>15036440</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>高雷</td>
- <td class="xl68" align="right" x:num>15036507</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张娜</td>
- <td class="xl68" align="right" x:num>15009130</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>邹健</td>
- <td class="xl68" align="right" x:num>15112020</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘建平</td>
- <td class="xl68" align="right" x:num>15036326</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>荀亚林</td>
- <td class="xl68" align="right" x:num>15036334</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>桂伟</td>
- <td class="xl68" align="right" x:num>15036338</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张彩霞</td>
- <td class="xl68" align="right" x:num>15036340</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>陈旭东</td>
- <td class="xl68" align="right" x:num>15036343</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋璟玥</td>
- <td class="xl68" align="right" x:num>15035340</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王淑琴</td>
- <td class="xl68" align="right" x:num>15036324</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨志俊</td>
- <td class="xl68" align="right" x:num>15036325</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>史素云</td>
- <td class="xl68" align="right" x:num>15004593</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
- <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闫茂云</td>
- <td class="xl68" align="right" x:num>15006131</td>
- <td class="xl68" x:str>女</td>
- <td class="xl70"></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
- <td class="xl68"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- <td class="xl70"></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵秀芳</td>
- <td class="xl68" align="right" x:num>15036332</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李丽艳</td>
- <td class="xl68" align="right" x:num>15036302</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张改丽</td>
- <td class="xl68" align="right" x:num>15036304</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>范惠宁</td>
- <td class="xl68" align="right" x:num>15036306</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>郝建宁</td>
- <td class="xl68" align="right" x:num>15036307</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>崔庆</td>
- <td class="xl68" align="right" x:num>15036308</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张海东</td>
- <td class="xl68" align="right" x:num>15036310</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨滨</td>
- <td class="xl68" align="right" x:num>15003721</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>何志强</td>
- <td class="xl68" align="right" x:num>15036287</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>邢宝星</td>
- <td class="xl68" align="right" x:num>15006130</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>林红梅</td>
- <td class="xl68" align="right" x:num>15036342</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心副总</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李林</td>
- <td class="xl68" align="right" x:num>15036301</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张杰</td>
- <td class="xl68" align="right" x:num>15036284</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王玉芹</td>
- <td class="xl68" align="right" x:num>1010039</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>贺小云</td>
- <td class="xl68" align="right" x:num>1036444</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李玉娟</td>
- <td class="xl68" align="right" x:num>1036336</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>梁君</td>
- <td class="xl68" align="right" x:num>1036345</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>秦冬堂</td>
- <td class="xl68" align="right" x:num>1036523</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王涛</td>
- <td class="xl68" align="right" x:num>15036443</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王涛</td>
- <td class="xl68" align="right" x:num>15909508520</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨欢-物业</td>
- <td class="xl68" align="right" x:num>100</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李晨雨</td>
- <td class="xl68" align="right" x:num>20042057</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>吴嘉敏</td>
- <td class="xl68" align="right" x:num>20042056</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>煤科院徐华龙<span style='display:none;'></span></td>
- <td class="xl68" align="right" x:num>650007</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68" x:str>主管技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨雪玲</td>
- <td class="xl68" align="right" x:num>15036519</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>田野</td>
- <td class="xl68" align="right" x:num>15054040</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张一苇</td>
- <td class="xl68" align="right" x:num>15102665</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>陈秋月</td>
- <td class="xl68" align="right" x:num>20036613</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张超</td>
- <td class="xl68" align="right" x:num>15058692</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>姚小霞</td>
- <td class="xl68" align="right" x:num>15108030</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>胡业梅</td>
- <td class="xl68" align="right" x:num>15036478</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>芦胜金</td>
- <td class="xl68" align="right" x:num>15036480</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>曹玮琦</td>
- <td class="xl68" align="right" x:num>15036520</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨自芬</td>
- <td class="xl68" align="right" x:num>15054043</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>宁夏世纪潮</td>
- <td class="xl68" align="right" x:num>650005</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>煤科院徐正国<span style='display:none;'></span></td>
- <td class="xl68" align="right" x:num>650004</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
- <td class="xl68"></td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>莫毅彬</td>
- <td class="xl68" align="right" x:num>15036452</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>汽车驾驶员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>薛若彤</td>
- <td class="xl68" align="right" x:num>20036615</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张建</td>
- <td class="xl68" align="right" x:num>15036491</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>房元新</td>
- <td class="xl68" align="right" x:num>15054045</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>高岩</td>
- <td class="xl68" align="right" x:num>15056938</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>贾磊</td>
- <td class="xl68" align="right" x:num>15102667</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl72" x:str>国家能源集团<font class="font25">/</font><font class="font5">宁东运营部</font><font class="font25">/</font><font class="font5">信息化站</font></td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>费勤华</td>
- <td class="xl68" align="right" x:num>15036492</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl72" x:str>国家能源集团/宁东运营部/中心领导</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张宝霞</td>
- <td class="xl68" align="right" x:num>15036497</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马明君</td>
- <td class="xl68" align="right" x:num>15036511</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>主管技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>蔡文斌</td>
- <td class="xl68" align="right" x:num>15036483</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马伏祥</td>
- <td class="xl68" align="right" x:num>15036484</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马春仁</td>
- <td class="xl68" align="right" x:num>15036485</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李佳</td>
- <td class="xl68" align="right" x:num>15036487</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王小贺</td>
- <td class="xl68" align="right" x:num>15036488</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>宋晓光</td>
- <td class="xl68" align="right" x:num>15036489</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
- <td colspan="2" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>周斌</td>
- <td class="xl68" align="right" x:num>15036453</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>汽车驾驶员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>刘俊良</td>
- <td class="xl68" align="right" x:num>20036611</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵玉桂</td>
- <td class="xl68" align="right" x:num>20036612</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>黄涛</td>
- <td class="xl68" align="right" x:num>15036477</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>胡晓梅</td>
- <td class="xl68" align="right" x:num>15036510</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>干事</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>殷燕</td>
- <td class="xl68" align="right" x:num>15036512</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>营业员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>崔旭承</td>
- <td class="xl68" align="right" x:num>15036514</td>
- <td class="xl68" x:str>男</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
- <td class="xl68" x:str>汽车驾驶员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵静</td>
- <td class="xl68" align="right" x:num>15036516</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
- <td class="xl68" x:str>干事</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张丽</td>
- <td class="xl68" align="right" x:num>15036411</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
- <td class="xl68" x:str>干事</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <tr height="17.60" style='height:17.60pt;'>
- <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵桠楠</td>
- <td class="xl68" align="right" x:num>15036499</td>
- <td class="xl68" x:str>女</td>
- <td></td>
- <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
- <td class="xl68" x:str>技术员</td>
- <td colspan="3" style='mso-ignore:colspan;'></td>
- </tr>
- <![if supportMisalignedColumns]>
- <tr width="0" style='display:none;'>
- <td width="65" style='width:65;'></td>
- <td width="89" style='width:89;'></td>
- <td width="55" style='width:55;'></td>
- <td width="76" style='width:76;'></td>
- <td width="491" style='width:491;'></td>
- <td width="74" style='width:74;'></td>
- <td width="104" style='width:104;'></td>
- <td width="97" style='width:97;'></td>
- <td width="121" style='width:121;'></td>
- </tr>
- <![endif]>
- </table>
- </body>
- </html>
|