29_17061426.xls 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598
  1. <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">
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  4. <meta name="ProgId" content="Excel.Sheet"/>
  5. <meta name="Generator" content="WPS Office ET"/>
  6. <!--[if gte mso 9]>
  7. <xml>
  8. <o:DocumentProperties>
  9. <o:Created>2021-12-29T15:54:48</o:Created>
  10. <o:LastSaved>2021-12-29T16:39:47</o:LastSaved>
  11. </o:DocumentProperties>
  12. <o:CustomDocumentProperties>
  13. <o:KSOProductBuildVer dt:dt="string">2052-1.5.2.2273</o:KSOProductBuildVer>
  14. </o:CustomDocumentProperties>
  15. </xml>
  16. <![endif]-->
  17. <style>
  18. <!-- @page
  19. {margin:0.98in 0.75in 0.98in 0.75in;
  20. mso-header-margin:0.51in;
  21. mso-footer-margin:0.51in;}
  22. tr
  23. {mso-height-source:auto;
  24. mso-ruby-visibility:none;}
  25. col
  26. {mso-width-source:auto;
  27. mso-ruby-visibility:none;}
  28. br
  29. {mso-data-placement:same-cell;}
  30. .font0
  31. {color:#000000;
  32. font-size:12.0pt;
  33. font-weight:400;
  34. font-style:normal;
  35. text-decoration:none;
  36. font-family:"宋体";
  37. mso-generic-font-family:auto;
  38. mso-font-charset:134;}
  39. .font1
  40. {color:#FF0000;
  41. font-size:10.0pt;
  42. font-weight:400;
  43. font-style:normal;
  44. text-decoration:none;
  45. font-family:"Arial Unicode MS";
  46. mso-generic-font-family:auto;
  47. mso-font-charset:134;}
  48. .font2
  49. {color:#000000;
  50. font-size:10.0pt;
  51. font-weight:700;
  52. font-style:normal;
  53. text-decoration:none;
  54. font-family:"Arial Unicode MS";
  55. mso-generic-font-family:auto;
  56. mso-font-charset:134;}
  57. .font3
  58. {color:#000000;
  59. font-size:11.0pt;
  60. font-weight:400;
  61. font-style:normal;
  62. text-decoration:none;
  63. font-family:"Calibri";
  64. mso-generic-font-family:auto;
  65. mso-font-charset:0;}
  66. .font4
  67. {color:#000000;
  68. font-size:10.0pt;
  69. font-weight:400;
  70. font-style:normal;
  71. text-decoration:none;
  72. font-family:"Arial Unicode MS";
  73. mso-generic-font-family:auto;
  74. mso-font-charset:134;}
  75. .font5
  76. {color:#000000;
  77. font-size:11.0pt;
  78. font-weight:400;
  79. font-style:normal;
  80. text-decoration:none;
  81. font-family:"华文宋体";
  82. mso-generic-font-family:auto;
  83. mso-font-charset:0;}
  84. .font6
  85. {color:#FA7D00;
  86. font-size:11.0pt;
  87. font-weight:400;
  88. font-style:normal;
  89. text-decoration:none;
  90. font-family:"宋体";
  91. mso-generic-font-family:auto;
  92. mso-font-charset:0;}
  93. .font7
  94. {color:#000000;
  95. font-size:11.0pt;
  96. font-weight:400;
  97. font-style:normal;
  98. text-decoration:none;
  99. font-family:"宋体";
  100. mso-generic-font-family:auto;
  101. mso-font-charset:0;}
  102. .font8
  103. {color:#44546A;
  104. font-size:11.0pt;
  105. font-weight:700;
  106. font-style:normal;
  107. text-decoration:none;
  108. font-family:"宋体";
  109. mso-generic-font-family:auto;
  110. mso-font-charset:134;}
  111. .font9
  112. {color:#44546A;
  113. font-size:18.0pt;
  114. font-weight:700;
  115. font-style:normal;
  116. text-decoration:none;
  117. font-family:"宋体";
  118. mso-generic-font-family:auto;
  119. mso-font-charset:134;}
  120. .font10
  121. {color:#44546A;
  122. font-size:13.0pt;
  123. font-weight:700;
  124. font-style:normal;
  125. text-decoration:none;
  126. font-family:"宋体";
  127. mso-generic-font-family:auto;
  128. mso-font-charset:134;}
  129. .font11
  130. {color:#800080;
  131. font-size:12.0pt;
  132. font-weight:400;
  133. font-style:normal;
  134. text-decoration:underline;
  135. text-underline-style:single;
  136. font-family:"宋体";
  137. mso-generic-font-family:auto;
  138. mso-font-charset:134;}
  139. .font12
  140. {color:#0000FF;
  141. font-size:12.0pt;
  142. font-weight:400;
  143. font-style:normal;
  144. text-decoration:underline;
  145. text-underline-style:single;
  146. font-family:"宋体";
  147. mso-generic-font-family:auto;
  148. mso-font-charset:134;}
  149. .font13
  150. {color:#FF0000;
  151. font-size:11.0pt;
  152. font-weight:400;
  153. font-style:normal;
  154. text-decoration:none;
  155. font-family:"宋体";
  156. mso-generic-font-family:auto;
  157. mso-font-charset:0;}
  158. .font14
  159. {color:#44546A;
  160. font-size:15.0pt;
  161. font-weight:700;
  162. font-style:normal;
  163. text-decoration:none;
  164. font-family:"宋体";
  165. mso-generic-font-family:auto;
  166. mso-font-charset:134;}
  167. .font15
  168. {color:#3F3F3F;
  169. font-size:11.0pt;
  170. font-weight:700;
  171. font-style:normal;
  172. text-decoration:none;
  173. font-family:"宋体";
  174. mso-generic-font-family:auto;
  175. mso-font-charset:0;}
  176. .font16
  177. {color:#FFFFFF;
  178. font-size:11.0pt;
  179. font-weight:400;
  180. font-style:normal;
  181. text-decoration:none;
  182. font-family:"宋体";
  183. mso-generic-font-family:auto;
  184. mso-font-charset:0;}
  185. .font17
  186. {color:#FA7D00;
  187. font-size:11.0pt;
  188. font-weight:700;
  189. font-style:normal;
  190. text-decoration:none;
  191. font-family:"宋体";
  192. mso-generic-font-family:auto;
  193. mso-font-charset:0;}
  194. .font18
  195. {color:#9C0006;
  196. font-size:11.0pt;
  197. font-weight:400;
  198. font-style:normal;
  199. text-decoration:none;
  200. font-family:"宋体";
  201. mso-generic-font-family:auto;
  202. mso-font-charset:0;}
  203. .font19
  204. {color:#006100;
  205. font-size:11.0pt;
  206. font-weight:400;
  207. font-style:normal;
  208. text-decoration:none;
  209. font-family:"宋体";
  210. mso-generic-font-family:auto;
  211. mso-font-charset:0;}
  212. .font20
  213. {color:#7F7F7F;
  214. font-size:11.0pt;
  215. font-weight:400;
  216. font-style:italic;
  217. text-decoration:none;
  218. font-family:"宋体";
  219. mso-generic-font-family:auto;
  220. mso-font-charset:0;}
  221. .font21
  222. {color:#000000;
  223. font-size:11.0pt;
  224. font-weight:700;
  225. font-style:normal;
  226. text-decoration:none;
  227. font-family:"宋体";
  228. mso-generic-font-family:auto;
  229. mso-font-charset:0;}
  230. .font22
  231. {color:#3F3F76;
  232. font-size:11.0pt;
  233. font-weight:400;
  234. font-style:normal;
  235. text-decoration:none;
  236. font-family:"宋体";
  237. mso-generic-font-family:auto;
  238. mso-font-charset:0;}
  239. .font23
  240. {color:#9C6500;
  241. font-size:11.0pt;
  242. font-weight:400;
  243. font-style:normal;
  244. text-decoration:none;
  245. font-family:"宋体";
  246. mso-generic-font-family:auto;
  247. mso-font-charset:0;}
  248. .font24
  249. {color:#FFFFFF;
  250. font-size:11.0pt;
  251. font-weight:700;
  252. font-style:normal;
  253. text-decoration:none;
  254. font-family:"宋体";
  255. mso-generic-font-family:auto;
  256. mso-font-charset:0;}
  257. .font25
  258. {color:#000000;
  259. font-size:11.0pt;
  260. font-weight:400;
  261. font-style:normal;
  262. text-decoration:none;
  263. font-family:"Calibri";
  264. mso-generic-font-family:auto;
  265. mso-font-charset:0;}
  266. .style0
  267. {mso-number-format:"General";
  268. text-align:general;
  269. vertical-align:middle;
  270. white-space:nowrap;
  271. mso-rotate:0;
  272. mso-pattern:auto;
  273. mso-background-source:auto;
  274. color:#000000;
  275. font-size:12.0pt;
  276. font-weight:400;
  277. font-style:normal;
  278. text-decoration:none;
  279. font-family:宋体;
  280. mso-generic-font-family:auto;
  281. mso-font-charset:134;
  282. border:none;
  283. mso-protection:locked visible;
  284. mso-style-name:"常规";
  285. mso-style-id:0;}
  286. .style16
  287. {mso-pattern:auto none;
  288. background:#A9D08E;
  289. color:#FFFFFF;
  290. font-size:11.0pt;
  291. font-weight:400;
  292. font-style:normal;
  293. text-decoration:none;
  294. font-family:宋体;
  295. mso-generic-font-family:auto;
  296. mso-font-charset:0;
  297. mso-style-name:"60% - 强调文字颜色 6";}
  298. .style17
  299. {mso-pattern:auto none;
  300. background:#FFF2CC;
  301. color:#000000;
  302. font-size:11.0pt;
  303. font-weight:400;
  304. font-style:normal;
  305. text-decoration:none;
  306. font-family:宋体;
  307. mso-generic-font-family:auto;
  308. mso-font-charset:0;
  309. mso-style-name:"20% - 强调文字颜色 4";}
  310. .style18
  311. {mso-pattern:auto none;
  312. background:#FFC000;
  313. color:#FFFFFF;
  314. font-size:11.0pt;
  315. font-weight:400;
  316. font-style:normal;
  317. text-decoration:none;
  318. font-family:宋体;
  319. mso-generic-font-family:auto;
  320. mso-font-charset:0;
  321. mso-style-name:"强调文字颜色 4";}
  322. .style19
  323. {mso-pattern:auto none;
  324. background:#FFCC99;
  325. color:#3F3F76;
  326. font-size:11.0pt;
  327. font-weight:400;
  328. font-style:normal;
  329. text-decoration:none;
  330. font-family:宋体;
  331. mso-generic-font-family:auto;
  332. mso-font-charset:0;
  333. border:.5pt solid #7F7F7F;
  334. mso-style-name:"输入";}
  335. .style20
  336. {mso-pattern:auto none;
  337. background:#DBDBDB;
  338. color:#000000;
  339. font-size:11.0pt;
  340. font-weight:400;
  341. font-style:normal;
  342. text-decoration:none;
  343. font-family:宋体;
  344. mso-generic-font-family:auto;
  345. mso-font-charset:0;
  346. mso-style-name:"40% - 强调文字颜色 3";}
  347. .style21
  348. {mso-pattern:auto none;
  349. background:#EDEDED;
  350. color:#000000;
  351. font-size:11.0pt;
  352. font-weight:400;
  353. font-style:normal;
  354. text-decoration:none;
  355. font-family:宋体;
  356. mso-generic-font-family:auto;
  357. mso-font-charset:0;
  358. mso-style-name:"20% - 强调文字颜色 3";}
  359. .style22
  360. {mso-number-format:"_ \0022\00A5\0022* \#\,\#\#0\.00_ \;_ \0022\00A5\0022* \\-\#\,\#\#0\.00_ \;_ \0022\00A5\0022* \0022-\0022??_ \;_ \@_ ";
  361. mso-style-name:"货币";
  362. mso-style-id:4;}
  363. .style23
  364. {mso-pattern:auto none;
  365. background:#A5A5A5;
  366. color:#FFFFFF;
  367. font-size:11.0pt;
  368. font-weight:400;
  369. font-style:normal;
  370. text-decoration:none;
  371. font-family:宋体;
  372. mso-generic-font-family:auto;
  373. mso-font-charset:0;
  374. mso-style-name:"强调文字颜色 3";}
  375. .style24
  376. {mso-number-format:"0%";
  377. mso-style-name:"百分比";
  378. mso-style-id:5;}
  379. .style25
  380. {mso-pattern:auto none;
  381. background:#F4B084;
  382. color:#FFFFFF;
  383. font-size:11.0pt;
  384. font-weight:400;
  385. font-style:normal;
  386. text-decoration:none;
  387. font-family:宋体;
  388. mso-generic-font-family:auto;
  389. mso-font-charset:0;
  390. mso-style-name:"60% - 强调文字颜色 2";}
  391. .style26
  392. {mso-pattern:auto none;
  393. background:#8EA9DB;
  394. color:#FFFFFF;
  395. font-size:11.0pt;
  396. font-weight:400;
  397. font-style:normal;
  398. text-decoration:none;
  399. font-family:宋体;
  400. mso-generic-font-family:auto;
  401. mso-font-charset:0;
  402. mso-style-name:"60% - 强调文字颜色 5";}
  403. .style27
  404. {mso-pattern:auto none;
  405. background:#ED7D31;
  406. color:#FFFFFF;
  407. font-size:11.0pt;
  408. font-weight:400;
  409. font-style:normal;
  410. text-decoration:none;
  411. font-family:宋体;
  412. mso-generic-font-family:auto;
  413. mso-font-charset:0;
  414. mso-style-name:"强调文字颜色 2";}
  415. .style28
  416. {mso-pattern:auto none;
  417. background:#9BC2E6;
  418. color:#FFFFFF;
  419. font-size:11.0pt;
  420. font-weight:400;
  421. font-style:normal;
  422. text-decoration:none;
  423. font-family:宋体;
  424. mso-generic-font-family:auto;
  425. mso-font-charset:0;
  426. mso-style-name:"60% - 强调文字颜色 1";}
  427. .style29
  428. {mso-pattern:auto none;
  429. background:#FFD966;
  430. color:#FFFFFF;
  431. font-size:11.0pt;
  432. font-weight:400;
  433. font-style:normal;
  434. text-decoration:none;
  435. font-family:宋体;
  436. mso-generic-font-family:auto;
  437. mso-font-charset:0;
  438. mso-style-name:"60% - 强调文字颜色 4";}
  439. .style30
  440. {mso-pattern:auto none;
  441. background:#F2F2F2;
  442. color:#FA7D00;
  443. font-size:11.0pt;
  444. font-weight:700;
  445. font-style:normal;
  446. text-decoration:none;
  447. font-family:宋体;
  448. mso-generic-font-family:auto;
  449. mso-font-charset:0;
  450. border:.5pt solid #7F7F7F;
  451. mso-style-name:"计算";}
  452. .style31
  453. {mso-pattern:auto none;
  454. background:#5B9BD5;
  455. color:#FFFFFF;
  456. font-size:11.0pt;
  457. font-weight:400;
  458. font-style:normal;
  459. text-decoration:none;
  460. font-family:宋体;
  461. mso-generic-font-family:auto;
  462. mso-font-charset:0;
  463. mso-style-name:"强调文字颜色 1";}
  464. .style32
  465. {mso-pattern:auto none;
  466. background:#FFEB9C;
  467. color:#9C6500;
  468. font-size:11.0pt;
  469. font-weight:400;
  470. font-style:normal;
  471. text-decoration:none;
  472. font-family:宋体;
  473. mso-generic-font-family:auto;
  474. mso-font-charset:0;
  475. mso-style-name:"适中";}
  476. .style33
  477. {mso-pattern:auto none;
  478. background:#D9E1F2;
  479. color:#000000;
  480. font-size:11.0pt;
  481. font-weight:400;
  482. font-style:normal;
  483. text-decoration:none;
  484. font-family:宋体;
  485. mso-generic-font-family:auto;
  486. mso-font-charset:0;
  487. mso-style-name:"20% - 强调文字颜色 5";}
  488. .style34
  489. {mso-pattern:auto none;
  490. background:#C6EFCE;
  491. color:#006100;
  492. font-size:11.0pt;
  493. font-weight:400;
  494. font-style:normal;
  495. text-decoration:none;
  496. font-family:宋体;
  497. mso-generic-font-family:auto;
  498. mso-font-charset:0;
  499. mso-style-name:"好";}
  500. .style35
  501. {mso-pattern:auto none;
  502. background:#DDEBF7;
  503. color:#000000;
  504. font-size:11.0pt;
  505. font-weight:400;
  506. font-style:normal;
  507. text-decoration:none;
  508. font-family:宋体;
  509. mso-generic-font-family:auto;
  510. mso-font-charset:0;
  511. mso-style-name:"20% - 强调文字颜色 1";}
  512. .style36
  513. {color:#000000;
  514. font-size:11.0pt;
  515. font-weight:700;
  516. font-style:normal;
  517. text-decoration:none;
  518. font-family:宋体;
  519. mso-generic-font-family:auto;
  520. mso-font-charset:0;
  521. border-top:.5pt solid #5B9BD5;
  522. border-bottom:2.0pt double #5B9BD5;
  523. mso-style-name:"汇总";}
  524. .style37
  525. {mso-pattern:auto none;
  526. background:#FFC7CE;
  527. color:#9C0006;
  528. font-size:11.0pt;
  529. font-weight:400;
  530. font-style:normal;
  531. text-decoration:none;
  532. font-family:宋体;
  533. mso-generic-font-family:auto;
  534. mso-font-charset:0;
  535. mso-style-name:"差";}
  536. .style38
  537. {mso-pattern:auto none;
  538. background:#A5A5A5;
  539. color:#FFFFFF;
  540. font-size:11.0pt;
  541. font-weight:700;
  542. font-style:normal;
  543. text-decoration:none;
  544. font-family:宋体;
  545. mso-generic-font-family:auto;
  546. mso-font-charset:0;
  547. border:2.0pt double #3F3F3F;
  548. mso-style-name:"检查单元格";}
  549. .style39
  550. {mso-pattern:auto none;
  551. background:#F2F2F2;
  552. color:#3F3F3F;
  553. font-size:11.0pt;
  554. font-weight:700;
  555. font-style:normal;
  556. text-decoration:none;
  557. font-family:宋体;
  558. mso-generic-font-family:auto;
  559. mso-font-charset:0;
  560. border:.5pt solid #3F3F3F;
  561. mso-style-name:"输出";}
  562. .style40
  563. {color:#44546A;
  564. font-size:15.0pt;
  565. font-weight:700;
  566. font-style:normal;
  567. text-decoration:none;
  568. font-family:宋体;
  569. mso-generic-font-family:auto;
  570. mso-font-charset:134;
  571. border-bottom:1.0pt solid #5B9BD5;
  572. mso-style-name:"标题 1";}
  573. .style41
  574. {color:#7F7F7F;
  575. font-size:11.0pt;
  576. font-weight:400;
  577. font-style:italic;
  578. text-decoration:none;
  579. font-family:宋体;
  580. mso-generic-font-family:auto;
  581. mso-font-charset:0;
  582. mso-style-name:"解释性文本";}
  583. .style42
  584. {mso-pattern:auto none;
  585. background:#FCE4D6;
  586. color:#000000;
  587. font-size:11.0pt;
  588. font-weight:400;
  589. font-style:normal;
  590. text-decoration:none;
  591. font-family:宋体;
  592. mso-generic-font-family:auto;
  593. mso-font-charset:0;
  594. mso-style-name:"20% - 强调文字颜色 2";}
  595. .style43
  596. {color:#44546A;
  597. font-size:11.0pt;
  598. font-weight:700;
  599. font-style:normal;
  600. text-decoration:none;
  601. font-family:宋体;
  602. mso-generic-font-family:auto;
  603. mso-font-charset:134;
  604. mso-style-name:"标题 4";}
  605. .style44
  606. {mso-number-format:"_ \0022\00A5\0022* \#\,\#\#0_ \;_ \0022\00A5\0022* \\-\#\,\#\#0_ \;_ \0022\00A5\0022* \0022-\0022_ \;_ \@_ ";
  607. mso-style-name:"货币[0]";
  608. mso-style-id:7;}
  609. .style45
  610. {mso-pattern:auto none;
  611. background:#FFE699;
  612. color:#000000;
  613. font-size:11.0pt;
  614. font-weight:400;
  615. font-style:normal;
  616. text-decoration:none;
  617. font-family:宋体;
  618. mso-generic-font-family:auto;
  619. mso-font-charset:0;
  620. mso-style-name:"40% - 强调文字颜色 4";}
  621. .style46
  622. {mso-number-format:"_ * \#\,\#\#0\.00_ \;_ * \\-\#\,\#\#0\.00_ \;_ * \0022-\0022??_ \;_ \@_ ";
  623. mso-style-name:"千位分隔";
  624. mso-style-id:3;}
  625. .style47
  626. {color:#800080;
  627. font-size:12.0pt;
  628. text-decoration:underline;
  629. text-underline-style:single;
  630. font-family:宋体;
  631. mso-style-name:"已访问的超链接";
  632. mso-style-id:9;}
  633. .style48
  634. {color:#44546A;
  635. font-size:18.0pt;
  636. font-weight:700;
  637. font-style:normal;
  638. text-decoration:none;
  639. font-family:宋体;
  640. mso-generic-font-family:auto;
  641. mso-font-charset:134;
  642. mso-style-name:"标题";}
  643. .style49
  644. {mso-pattern:auto none;
  645. background:#F8CBAD;
  646. color:#000000;
  647. font-size:11.0pt;
  648. font-weight:400;
  649. font-style:normal;
  650. text-decoration:none;
  651. font-family:宋体;
  652. mso-generic-font-family:auto;
  653. mso-font-charset:0;
  654. mso-style-name:"40% - 强调文字颜色 2";}
  655. .style50
  656. {color:#FF0000;
  657. font-size:11.0pt;
  658. font-weight:400;
  659. font-style:normal;
  660. text-decoration:none;
  661. font-family:宋体;
  662. mso-generic-font-family:auto;
  663. mso-font-charset:0;
  664. mso-style-name:"警告文本";}
  665. .style51
  666. {mso-pattern:auto none;
  667. background:#C9C9C9;
  668. color:#FFFFFF;
  669. font-size:11.0pt;
  670. font-weight:400;
  671. font-style:normal;
  672. text-decoration:none;
  673. font-family:宋体;
  674. mso-generic-font-family:auto;
  675. mso-font-charset:0;
  676. mso-style-name:"60% - 强调文字颜色 3";}
  677. .style52
  678. {mso-pattern:auto none;
  679. background:#FFFFCC;
  680. border:.5pt solid #B2B2B2;
  681. mso-style-name:"注释";}
  682. .style53
  683. {mso-pattern:auto none;
  684. background:#E2EFDA;
  685. color:#000000;
  686. font-size:11.0pt;
  687. font-weight:400;
  688. font-style:normal;
  689. text-decoration:none;
  690. font-family:宋体;
  691. mso-generic-font-family:auto;
  692. mso-font-charset:0;
  693. mso-style-name:"20% - 强调文字颜色 6";}
  694. .style54
  695. {mso-pattern:auto none;
  696. background:#4472C4;
  697. color:#FFFFFF;
  698. font-size:11.0pt;
  699. font-weight:400;
  700. font-style:normal;
  701. text-decoration:none;
  702. font-family:宋体;
  703. mso-generic-font-family:auto;
  704. mso-font-charset:0;
  705. mso-style-name:"强调文字颜色 5";}
  706. .style55
  707. {mso-pattern:auto none;
  708. background:#C6E0B4;
  709. color:#000000;
  710. font-size:11.0pt;
  711. font-weight:400;
  712. font-style:normal;
  713. text-decoration:none;
  714. font-family:宋体;
  715. mso-generic-font-family:auto;
  716. mso-font-charset:0;
  717. mso-style-name:"40% - 强调文字颜色 6";}
  718. .style56
  719. {color:#0000FF;
  720. font-size:12.0pt;
  721. text-decoration:underline;
  722. text-underline-style:single;
  723. font-family:宋体;
  724. mso-style-name:"超链接";
  725. mso-style-id:8;}
  726. .style57
  727. {mso-number-format:"_ * \#\,\#\#0_ \;_ * \\-\#\,\#\#0_ \;_ * \0022-\0022_ \;_ \@_ ";
  728. mso-style-name:"千位分隔[0]";
  729. mso-style-id:6;}
  730. .style58
  731. {color:#44546A;
  732. font-size:13.0pt;
  733. font-weight:700;
  734. font-style:normal;
  735. text-decoration:none;
  736. font-family:宋体;
  737. mso-generic-font-family:auto;
  738. mso-font-charset:134;
  739. border-bottom:1.0pt solid #5B9BD5;
  740. mso-style-name:"标题 2";}
  741. .style59
  742. {mso-pattern:auto none;
  743. background:#B4C6E7;
  744. color:#000000;
  745. font-size:11.0pt;
  746. font-weight:400;
  747. font-style:normal;
  748. text-decoration:none;
  749. font-family:宋体;
  750. mso-generic-font-family:auto;
  751. mso-font-charset:0;
  752. mso-style-name:"40% - 强调文字颜色 5";}
  753. .style60
  754. {color:#44546A;
  755. font-size:11.0pt;
  756. font-weight:700;
  757. font-style:normal;
  758. text-decoration:none;
  759. font-family:宋体;
  760. mso-generic-font-family:auto;
  761. mso-font-charset:134;
  762. border-bottom:1.0pt solid #ACCCEA;
  763. mso-style-name:"标题 3";}
  764. .style61
  765. {mso-pattern:auto none;
  766. background:#70AD47;
  767. color:#FFFFFF;
  768. font-size:11.0pt;
  769. font-weight:400;
  770. font-style:normal;
  771. text-decoration:none;
  772. font-family:宋体;
  773. mso-generic-font-family:auto;
  774. mso-font-charset:0;
  775. mso-style-name:"强调文字颜色 6";}
  776. .style62
  777. {mso-pattern:auto none;
  778. background:#BDD7EE;
  779. color:#000000;
  780. font-size:11.0pt;
  781. font-weight:400;
  782. font-style:normal;
  783. text-decoration:none;
  784. font-family:宋体;
  785. mso-generic-font-family:auto;
  786. mso-font-charset:0;
  787. mso-style-name:"40% - 强调文字颜色 1";}
  788. .style63
  789. {color:#FA7D00;
  790. font-size:11.0pt;
  791. font-weight:400;
  792. font-style:normal;
  793. text-decoration:none;
  794. font-family:宋体;
  795. mso-generic-font-family:auto;
  796. mso-font-charset:0;
  797. border-bottom:2.0pt double #FF8001;
  798. mso-style-name:"链接单元格";}
  799. td
  800. {mso-style-parent:style0;
  801. padding-top:1px;
  802. padding-right:1px;
  803. padding-left:1px;
  804. mso-ignore:padding;
  805. mso-number-format:"General";
  806. text-align:general;
  807. vertical-align:middle;
  808. white-space:nowrap;
  809. mso-rotate:0;
  810. mso-pattern:auto;
  811. mso-background-source:auto;
  812. color:#000000;
  813. font-size:12.0pt;
  814. font-weight:400;
  815. font-style:normal;
  816. text-decoration:none;
  817. font-family:宋体;
  818. mso-generic-font-family:auto;
  819. mso-font-charset:134;
  820. border:none;
  821. mso-protection:locked visible;}
  822. .xl65
  823. {mso-style-parent:style0;
  824. mso-pattern:auto none;
  825. background:#F1F1F1;
  826. mso-font-charset:134;}
  827. .xl66
  828. {mso-style-parent:style0;
  829. text-align:center;
  830. white-space:normal;
  831. mso-pattern:auto none;
  832. background:#CDF79E;
  833. color:#FF0000;
  834. font-size:10.0pt;
  835. font-family:Arial Unicode MS;
  836. mso-font-charset:134;
  837. border:.5pt solid #000000;}
  838. .xl67
  839. {mso-style-parent:style0;
  840. text-align:center;
  841. white-space:normal;
  842. mso-pattern:auto none;
  843. background:#CDF79E;
  844. font-size:10.0pt;
  845. font-weight:700;
  846. font-family:Arial Unicode MS;
  847. mso-font-charset:134;
  848. border:.5pt solid #000000;}
  849. .xl68
  850. {mso-style-parent:style0;
  851. vertical-align:bottom;
  852. font-size:11.0pt;
  853. font-family:Calibri;
  854. mso-font-charset:0;}
  855. .xl69
  856. {mso-style-parent:style0;
  857. text-align:center;
  858. white-space:normal;
  859. font-size:10.0pt;
  860. font-family:Arial Unicode MS;
  861. mso-font-charset:134;
  862. border:.5pt solid #000000;}
  863. .xl70
  864. {mso-style-parent:style0;
  865. text-align:center;
  866. white-space:normal;
  867. mso-font-charset:134;
  868. border:.5pt solid #000000;}
  869. .xl71
  870. {mso-style-parent:style0;
  871. text-align:center;
  872. white-space:normal;
  873. mso-pattern:auto none;
  874. background:#CDF79E;
  875. font-size:10.0pt;
  876. font-weight:700;
  877. font-family:Arial Unicode MS;
  878. mso-font-charset:134;
  879. border:.5pt solid #000000;}
  880. .xl72
  881. {mso-style-parent:style0;
  882. vertical-align:bottom;
  883. font-size:11.0pt;
  884. font-family:华文宋体;
  885. mso-font-charset:0;}
  886. --> </style>
  887. <!--[if gte mso 9]>
  888. <xml>
  889. <x:ExcelWorkbook>
  890. <x:ExcelWorksheets>
  891. <x:ExcelWorksheet>
  892. <x:Name>userimport</x:Name>
  893. <x:WorksheetOptions>
  894. <x:DefaultRowHeight>352</x:DefaultRowHeight>
  895. <x:StandardWidth>2340</x:StandardWidth>
  896. <x:Selected/>
  897. <x:Panes>
  898. <x:Pane>
  899. <x:Number>3</x:Number>
  900. <x:ActiveCol>5</x:ActiveCol>
  901. <x:ActiveRow>122</x:ActiveRow>
  902. <x:RangeSelection>F123:F161</x:RangeSelection>
  903. </x:Pane>
  904. </x:Panes>
  905. <x:DoNotDisplayGridlines/>
  906. <x:ProtectContents>False</x:ProtectContents>
  907. <x:ProtectObjects>False</x:ProtectObjects>
  908. <x:ProtectScenarios>False</x:ProtectScenarios>
  909. <x:Print>
  910. <x:PaperSizeIndex>9</x:PaperSizeIndex>
  911. </x:Print>
  912. </x:WorksheetOptions>
  913. </x:ExcelWorksheet>
  914. </x:ExcelWorksheets>
  915. <x:ProtectStructure>False</x:ProtectStructure>
  916. <x:ProtectWindows>False</x:ProtectWindows>
  917. <x:WindowHeight>11400</x:WindowHeight>
  918. <x:WindowWidth>28000</x:WindowWidth>
  919. </x:ExcelWorkbook>
  920. </xml>
  921. <![endif]-->
  922. </head>
  923. <body link="blue" vlink="purple">
  924. <table width="1171.55" border="0" cellpadding="0" cellspacing="0" style='width:1171.55pt;border-collapse:collapse;table-layout:fixed;'>
  925. <col width="64.80" style='mso-width-source:userset;mso-width-alt:2764;'/>
  926. <col width="89.15" style='mso-width-source:userset;mso-width-alt:3803;'/>
  927. <col width="54.85" style='mso-width-source:userset;mso-width-alt:2340;'/>
  928. <col width="76.35" style='mso-width-source:userset;mso-width-alt:3257;'/>
  929. <col width="490.85" style='mso-width-source:userset;mso-width-alt:20942;'/>
  930. <col width="73.55" style='mso-width-source:userset;mso-width-alt:3138;'/>
  931. <col width="104.15" style='mso-width-source:userset;mso-width-alt:4443;'/>
  932. <col width="97" style='mso-width-source:userset;mso-width-alt:4138;'/>
  933. <col width="120.85" style='mso-width-source:userset;mso-width-alt:5156;'/>
  934. <tr height="16.85" class="xl65" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  935. <td class="xl66" height="16.85" width="64.80" style='height:16.85pt;width:64.80pt;' x:str>*<font class="font2">姓名(name)</font></td>
  936. <td class="xl66" width="89.15" style='width:89.15pt;' x:str>*<font class="font2">用户名(user)</font></td>
  937. <td class="xl66" width="54.85" style='width:54.85pt;' x:str>*<font class="font2">性别(sex)</font></td>
  938. <td class="xl67" width="76.35" style='width:76.35pt;' x:str>手机号(mobile)</td>
  939. <td class="xl66" width="490.85" style='width:490.85pt;' x:str>*<font class="font2">部门(deptname)</font></td>
  940. <td class="xl71" width="73.55" style='width:73.55pt;' x:str>职位(ranking)</td>
  941. <td class="xl67" width="104.15" style='width:104.15pt;' x:str>上级主管(superman)</td>
  942. <td class="xl67" width="97" style='width:97.00pt;' x:str>电话(tel)</td>
  943. <td class="xl67" width="120.85" style='width:120.85pt;' x:str>邮箱(email)</td>
  944. </tr>
  945. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  946. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨国林</td>
  947. <td class="xl68" align="right" x:num>15042504</td>
  948. <td class="xl68" x:str>男</td>
  949. <td class="xl69"></td>
  950. <td class="xl68" x:str>国家能源集团/宁东运营部/部领导</td>
  951. <td class="xl68" x:str>部长</td>
  952. <td class="xl69"></td>
  953. <td class="xl69"></td>
  954. <td class="xl69"></td>
  955. </tr>
  956. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  957. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨海军</td>
  958. <td class="xl68" align="right" x:num>15110427</td>
  959. <td class="xl68" x:str>男</td>
  960. <td class="xl70"></td>
  961. <td class="xl68" x:str>国家能源集团/宁东运营部/部领导</td>
  962. <td class="xl68" x:str>副部长</td>
  963. <td class="xl70"></td>
  964. <td class="xl70"></td>
  965. <td class="xl70"></td>
  966. </tr>
  967. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  968. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李靖</td>
  969. <td class="xl68" align="right" x:num>15036481</td>
  970. <td class="xl68" x:str>男</td>
  971. <td class="xl70"></td>
  972. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  973. <td class="xl68" x:str>专责</td>
  974. <td class="xl70"></td>
  975. <td class="xl70"></td>
  976. <td class="xl70"></td>
  977. </tr>
  978. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  979. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>钱亚波</td>
  980. <td class="xl68" align="right" x:num>15036475</td>
  981. <td class="xl68" x:str>男</td>
  982. <td class="xl70"></td>
  983. <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
  984. <td class="xl68" x:str>一级专责</td>
  985. <td class="xl70"></td>
  986. <td class="xl70"></td>
  987. <td class="xl70"></td>
  988. </tr>
  989. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  990. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>吴向东</td>
  991. <td class="xl68" align="right" x:num>15036361</td>
  992. <td class="xl68" x:str>男</td>
  993. <td class="xl70"></td>
  994. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  995. <td class="xl68" x:str>专责</td>
  996. <td class="xl70"></td>
  997. <td class="xl70"></td>
  998. <td class="xl70"></td>
  999. </tr>
  1000. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1001. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>查学刚</td>
  1002. <td class="xl68" align="right" x:num>15036479</td>
  1003. <td class="xl68" x:str>男</td>
  1004. <td class="xl70"></td>
  1005. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  1006. <td class="xl68" x:str>一级专责</td>
  1007. <td class="xl70"></td>
  1008. <td class="xl70"></td>
  1009. <td class="xl70"></td>
  1010. </tr>
  1011. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1012. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李建忠</td>
  1013. <td class="xl68" align="right" x:num>15036474</td>
  1014. <td class="xl68" x:str>男</td>
  1015. <td class="xl70"></td>
  1016. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1017. <td class="xl68" x:str>站长</td>
  1018. <td class="xl70"></td>
  1019. <td class="xl70"></td>
  1020. <td class="xl70"></td>
  1021. </tr>
  1022. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1023. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>邵勇</td>
  1024. <td class="xl68" align="right" x:num>15036504</td>
  1025. <td class="xl68" x:str>男</td>
  1026. <td class="xl70"></td>
  1027. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  1028. <td class="xl68" x:str>副科长</td>
  1029. <td class="xl70"></td>
  1030. <td class="xl70"></td>
  1031. <td class="xl70"></td>
  1032. </tr>
  1033. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1034. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>吴承军</td>
  1035. <td class="xl68" align="right" x:num>15036508</td>
  1036. <td class="xl68" x:str>男</td>
  1037. <td class="xl70"></td>
  1038. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1039. <td class="xl68" x:str>专责</td>
  1040. <td class="xl70"></td>
  1041. <td class="xl70"></td>
  1042. <td class="xl70"></td>
  1043. </tr>
  1044. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1045. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>周保军</td>
  1046. <td class="xl68" align="right" x:num>15036482</td>
  1047. <td class="xl68" x:str>男</td>
  1048. <td class="xl70"></td>
  1049. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  1050. <td class="xl68" x:str>主管技术员</td>
  1051. <td class="xl70"></td>
  1052. <td class="xl70"></td>
  1053. <td class="xl70"></td>
  1054. </tr>
  1055. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1056. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>冯建兵</td>
  1057. <td class="xl68" align="right" x:num>15036486</td>
  1058. <td class="xl68" x:str>男</td>
  1059. <td class="xl70"></td>
  1060. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1061. <td class="xl68" x:str>副站长</td>
  1062. <td class="xl70"></td>
  1063. <td class="xl70"></td>
  1064. <td class="xl70"></td>
  1065. </tr>
  1066. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1067. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闵磊</td>
  1068. <td class="xl68" align="right" x:num>15036518</td>
  1069. <td class="xl68" x:str>男</td>
  1070. <td class="xl70"></td>
  1071. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  1072. <td class="xl68" x:str>主管技术员</td>
  1073. <td class="xl70"></td>
  1074. <td class="xl70"></td>
  1075. <td class="xl70"></td>
  1076. </tr>
  1077. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1078. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马卫军</td>
  1079. <td class="xl68" align="right" x:num>15035277</td>
  1080. <td class="xl68" x:str>男</td>
  1081. <td class="xl70"></td>
  1082. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1083. <td class="xl68" x:str>技术员</td>
  1084. <td class="xl70"></td>
  1085. <td class="xl70"></td>
  1086. <td class="xl70"></td>
  1087. </tr>
  1088. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1089. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王添</td>
  1090. <td class="xl68" align="right" x:num>15036502</td>
  1091. <td class="xl68" x:str>男</td>
  1092. <td class="xl70"></td>
  1093. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  1094. <td class="xl68" x:str>技术员</td>
  1095. <td class="xl70"></td>
  1096. <td class="xl70"></td>
  1097. <td class="xl70"></td>
  1098. </tr>
  1099. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1100. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>牛智星</td>
  1101. <td class="xl68" align="right" x:num>15036503</td>
  1102. <td class="xl68" x:str>男</td>
  1103. <td class="xl70"></td>
  1104. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  1105. <td class="xl68" x:str>专责</td>
  1106. <td class="xl70"></td>
  1107. <td class="xl70"></td>
  1108. <td class="xl70"></td>
  1109. </tr>
  1110. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1111. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张启勇</td>
  1112. <td class="xl68" align="right" x:num>15036352</td>
  1113. <td class="xl68" x:str>男</td>
  1114. <td class="xl70"></td>
  1115. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  1116. <td class="xl68" x:str>汽车驾驶员</td>
  1117. <td class="xl70"></td>
  1118. <td class="xl70"></td>
  1119. <td class="xl70"></td>
  1120. </tr>
  1121. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1122. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>臧超</td>
  1123. <td class="xl68" align="right" x:num>15103509</td>
  1124. <td class="xl68" x:str>男</td>
  1125. <td class="xl70"></td>
  1126. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1127. <td class="xl68" x:str>矿井通讯维护<span style='display:none;'>工</span></td>
  1128. <td class="xl70"></td>
  1129. <td class="xl70"></td>
  1130. <td class="xl70"></td>
  1131. </tr>
  1132. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1133. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王建军</td>
  1134. <td class="xl68" align="right" x:num>15036490</td>
  1135. <td class="xl68" x:str>男</td>
  1136. <td class="xl70"></td>
  1137. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  1138. <td class="xl68" x:str>矿井通讯维护<span style='display:none;'>工</span></td>
  1139. <td class="xl70"></td>
  1140. <td class="xl70"></td>
  1141. <td class="xl70"></td>
  1142. </tr>
  1143. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1144. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>物业公司</td>
  1145. <td class="xl68" align="right" x:num>20210918</td>
  1146. <td class="xl68" x:str>男</td>
  1147. <td class="xl70"></td>
  1148. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  1149. <td class="xl68" x:str>专责</td>
  1150. <td class="xl70"></td>
  1151. <td class="xl70"></td>
  1152. <td class="xl70"></td>
  1153. </tr>
  1154. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1155. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张铁聪</td>
  1156. <td class="xl68" align="right" x:num>20210617</td>
  1157. <td class="xl68" x:str>男</td>
  1158. <td class="xl70"></td>
  1159. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1160. <td class="xl68"></td>
  1161. <td class="xl70"></td>
  1162. <td class="xl70"></td>
  1163. <td class="xl70"></td>
  1164. </tr>
  1165. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1166. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李亚婷</td>
  1167. <td class="xl68" align="right" x:num>20050826</td>
  1168. <td class="xl68" x:str>女</td>
  1169. <td class="xl70"></td>
  1170. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1171. <td class="xl68"></td>
  1172. <td class="xl70"></td>
  1173. <td class="xl70"></td>
  1174. <td class="xl70"></td>
  1175. </tr>
  1176. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1177. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>郑小娇</td>
  1178. <td class="xl68" align="right" x:num>15036387</td>
  1179. <td class="xl68" x:str>男</td>
  1180. <td class="xl70"></td>
  1181. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1182. <td class="xl68"></td>
  1183. <td class="xl70"></td>
  1184. <td class="xl70"></td>
  1185. <td class="xl70"></td>
  1186. </tr>
  1187. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1188. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>测试</td>
  1189. <td class="xl68" align="right" x:num>12345678</td>
  1190. <td class="xl68" x:str>男</td>
  1191. <td class="xl70"></td>
  1192. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  1193. <td class="xl68"></td>
  1194. <td class="xl70"></td>
  1195. <td class="xl70"></td>
  1196. <td class="xl70"></td>
  1197. </tr>
  1198. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1199. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>肖丽婷</td>
  1200. <td class="xl68" align="right" x:num>20050828</td>
  1201. <td class="xl68" x:str>女</td>
  1202. <td class="xl70"></td>
  1203. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  1204. <td class="xl68"></td>
  1205. <td class="xl70"></td>
  1206. <td class="xl70"></td>
  1207. <td class="xl70"></td>
  1208. </tr>
  1209. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1210. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨志刚</td>
  1211. <td class="xl68" align="right" x:num>20050825</td>
  1212. <td class="xl68" x:str>男</td>
  1213. <td class="xl70"></td>
  1214. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  1215. <td class="xl68"></td>
  1216. <td class="xl70"></td>
  1217. <td class="xl70"></td>
  1218. <td class="xl70"></td>
  1219. </tr>
  1220. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1221. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>沙波</td>
  1222. <td class="xl68" align="right" x:num>20050823</td>
  1223. <td class="xl68" x:str>男</td>
  1224. <td class="xl70"></td>
  1225. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  1226. <td class="xl68"></td>
  1227. <td class="xl70"></td>
  1228. <td class="xl70"></td>
  1229. <td class="xl70"></td>
  1230. </tr>
  1231. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1232. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏微新通信<span style='display:none;'>建设有限公司</span></td>
  1233. <td class="xl68" align="right" x:num>651009</td>
  1234. <td class="xl68" x:str>男</td>
  1235. <td class="xl70"></td>
  1236. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1237. <td class="xl68"></td>
  1238. <td class="xl70"></td>
  1239. <td class="xl70"></td>
  1240. <td class="xl70"></td>
  1241. </tr>
  1242. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1243. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>网络用户</td>
  1244. <td class="xl68" align="right" x:num>1</td>
  1245. <td class="xl68" x:str>男</td>
  1246. <td class="xl70"></td>
  1247. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1248. <td class="xl68"></td>
  1249. <td class="xl70"></td>
  1250. <td class="xl70"></td>
  1251. <td class="xl70"></td>
  1252. </tr>
  1253. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1254. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>天地常州王志<span style='display:none;'>军</span></td>
  1255. <td class="xl68" align="right" x:num>651003</td>
  1256. <td class="xl68" x:str>女</td>
  1257. <td class="xl70"></td>
  1258. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1259. <td class="xl68"></td>
  1260. <td class="xl70"></td>
  1261. <td class="xl70"></td>
  1262. <td class="xl70"></td>
  1263. </tr>
  1264. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1265. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>徐州博林司林<span style='display:none;'>龙</span></td>
  1266. <td class="xl68" align="right" x:num>651004</td>
  1267. <td class="xl68" x:str>女</td>
  1268. <td class="xl70"></td>
  1269. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1270. <td class="xl68"></td>
  1271. <td class="xl70"></td>
  1272. <td class="xl70"></td>
  1273. <td class="xl70"></td>
  1274. </tr>
  1275. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1276. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>武汉七环刘峰<span style='display:none;'></span></td>
  1277. <td class="xl68" align="right" x:num>651005</td>
  1278. <td class="xl68" x:str>女</td>
  1279. <td class="xl70"></td>
  1280. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1281. <td class="xl68"></td>
  1282. <td class="xl70"></td>
  1283. <td class="xl70"></td>
  1284. <td class="xl70"></td>
  1285. </tr>
  1286. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1287. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏杰唯许景<span style='display:none;'>龙</span></td>
  1288. <td class="xl68" align="right" x:num>651006</td>
  1289. <td class="xl68" x:str>女</td>
  1290. <td class="xl70"></td>
  1291. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1292. <td class="xl68"></td>
  1293. <td class="xl70"></td>
  1294. <td class="xl70"></td>
  1295. <td class="xl70"></td>
  1296. </tr>
  1297. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1298. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>山东科大张强<span style='display:none;'></span></td>
  1299. <td class="xl68" align="right" x:num>651007</td>
  1300. <td class="xl68" x:str>女</td>
  1301. <td class="xl70"></td>
  1302. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1303. <td class="xl68"></td>
  1304. <td class="xl70"></td>
  1305. <td class="xl70"></td>
  1306. <td class="xl70"></td>
  1307. </tr>
  1308. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1309. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>天地常州韩安<span style='display:none;'></span></td>
  1310. <td class="xl68" align="right" x:num>651008</td>
  1311. <td class="xl68" x:str>女</td>
  1312. <td class="xl70"></td>
  1313. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1314. <td class="xl68"></td>
  1315. <td class="xl70"></td>
  1316. <td class="xl70"></td>
  1317. <td class="xl70"></td>
  1318. </tr>
  1319. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1320. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>中煤重庆院胡<span style='display:none;'>士强</span></td>
  1321. <td class="xl68" align="right" x:num>651002</td>
  1322. <td class="xl68" x:str>女</td>
  1323. <td class="xl70"></td>
  1324. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1325. <td class="xl68"></td>
  1326. <td class="xl70"></td>
  1327. <td class="xl70"></td>
  1328. <td class="xl70"></td>
  1329. </tr>
  1330. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1331. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宁夏捷泰华周<span style='display:none;'>军</span></td>
  1332. <td class="xl68" align="right" x:num>651001</td>
  1333. <td class="xl68" x:str>女</td>
  1334. <td class="xl70"></td>
  1335. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  1336. <td class="xl68"></td>
  1337. <td class="xl70"></td>
  1338. <td class="xl70"></td>
  1339. <td class="xl70"></td>
  1340. </tr>
  1341. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1342. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李玉娟</td>
  1343. <td class="xl68" align="right" x:num>15036336</td>
  1344. <td class="xl68" x:str>女</td>
  1345. <td class="xl70"></td>
  1346. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1347. <td class="xl68"></td>
  1348. <td class="xl70"></td>
  1349. <td class="xl70"></td>
  1350. <td class="xl70"></td>
  1351. </tr>
  1352. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1353. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>梁君</td>
  1354. <td class="xl68" align="right" x:num>15036345</td>
  1355. <td class="xl68" x:str>女</td>
  1356. <td class="xl70"></td>
  1357. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1358. <td class="xl68"></td>
  1359. <td class="xl70"></td>
  1360. <td class="xl70"></td>
  1361. <td class="xl70"></td>
  1362. </tr>
  1363. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1364. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>申媛</td>
  1365. <td class="xl68" align="right" x:num>15046358</td>
  1366. <td class="xl68" x:str>女</td>
  1367. <td class="xl70"></td>
  1368. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1369. <td class="xl68"></td>
  1370. <td class="xl70"></td>
  1371. <td class="xl70"></td>
  1372. <td class="xl70"></td>
  1373. </tr>
  1374. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1375. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>谢洲</td>
  1376. <td class="xl68" align="right" x:num>15054046</td>
  1377. <td class="xl68" x:str>女</td>
  1378. <td class="xl70"></td>
  1379. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1380. <td class="xl68"></td>
  1381. <td class="xl70"></td>
  1382. <td class="xl70"></td>
  1383. <td class="xl70"></td>
  1384. </tr>
  1385. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1386. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘彩云</td>
  1387. <td class="xl68" align="right" x:num>15036531</td>
  1388. <td class="xl68" x:str>女</td>
  1389. <td class="xl70"></td>
  1390. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1391. <td class="xl68"></td>
  1392. <td class="xl70"></td>
  1393. <td class="xl70"></td>
  1394. <td class="xl70"></td>
  1395. </tr>
  1396. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1397. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王玉芹</td>
  1398. <td class="xl68" align="right" x:num>15010039</td>
  1399. <td class="xl68" x:str>女</td>
  1400. <td class="xl70"></td>
  1401. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1402. <td class="xl68"></td>
  1403. <td class="xl70"></td>
  1404. <td class="xl70"></td>
  1405. <td class="xl70"></td>
  1406. </tr>
  1407. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1408. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>官向栋</td>
  1409. <td class="xl68" align="right" x:num>15036501</td>
  1410. <td class="xl68" x:str>女</td>
  1411. <td class="xl70"></td>
  1412. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1413. <td class="xl68"></td>
  1414. <td class="xl70"></td>
  1415. <td class="xl70"></td>
  1416. <td class="xl70"></td>
  1417. </tr>
  1418. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1419. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李耀斌</td>
  1420. <td class="xl68" align="right" x:num>15036505</td>
  1421. <td class="xl68" x:str>女</td>
  1422. <td class="xl70"></td>
  1423. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1424. <td class="xl68"></td>
  1425. <td class="xl70"></td>
  1426. <td class="xl70"></td>
  1427. <td class="xl70"></td>
  1428. </tr>
  1429. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1430. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闫瑞</td>
  1431. <td class="xl68" align="right" x:num>15036506</td>
  1432. <td class="xl68" x:str>女</td>
  1433. <td class="xl70"></td>
  1434. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1435. <td class="xl68"></td>
  1436. <td class="xl70"></td>
  1437. <td class="xl70"></td>
  1438. <td class="xl70"></td>
  1439. </tr>
  1440. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1441. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李毅</td>
  1442. <td class="xl68" align="right" x:num>15036517</td>
  1443. <td class="xl68" x:str>女</td>
  1444. <td class="xl70"></td>
  1445. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1446. <td class="xl68"></td>
  1447. <td class="xl70"></td>
  1448. <td class="xl70"></td>
  1449. <td class="xl70"></td>
  1450. </tr>
  1451. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1452. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨苇</td>
  1453. <td class="xl68" align="right" x:num>15036532</td>
  1454. <td class="xl68" x:str>女</td>
  1455. <td class="xl70"></td>
  1456. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1457. <td class="xl68"></td>
  1458. <td class="xl70"></td>
  1459. <td class="xl70"></td>
  1460. <td class="xl70"></td>
  1461. </tr>
  1462. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1463. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>贺小云</td>
  1464. <td class="xl68" align="right" x:num>15036444</td>
  1465. <td class="xl68" x:str>女</td>
  1466. <td class="xl70"></td>
  1467. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1468. <td class="xl68"></td>
  1469. <td class="xl70"></td>
  1470. <td class="xl70"></td>
  1471. <td class="xl70"></td>
  1472. </tr>
  1473. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1474. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋龑</td>
  1475. <td class="xl68" align="right" x:num>15111070</td>
  1476. <td class="xl68" x:str>女</td>
  1477. <td class="xl70"></td>
  1478. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1479. <td class="xl68"></td>
  1480. <td class="xl70"></td>
  1481. <td class="xl70"></td>
  1482. <td class="xl70"></td>
  1483. </tr>
  1484. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1485. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>谢瑞</td>
  1486. <td class="xl68" align="right" x:num>15020653</td>
  1487. <td class="xl68" x:str>女</td>
  1488. <td class="xl70"></td>
  1489. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1490. <td class="xl68"></td>
  1491. <td class="xl70"></td>
  1492. <td class="xl70"></td>
  1493. <td class="xl70"></td>
  1494. </tr>
  1495. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1496. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李鑫</td>
  1497. <td class="xl68" align="right" x:num>15036548</td>
  1498. <td class="xl68" x:str>女</td>
  1499. <td class="xl70"></td>
  1500. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1501. <td class="xl68"></td>
  1502. <td class="xl70"></td>
  1503. <td class="xl70"></td>
  1504. <td class="xl70"></td>
  1505. </tr>
  1506. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1507. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王云飞</td>
  1508. <td class="xl68" align="right" x:num>15008628</td>
  1509. <td class="xl68" x:str>女</td>
  1510. <td class="xl70"></td>
  1511. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1512. <td class="xl68"></td>
  1513. <td class="xl70"></td>
  1514. <td class="xl70"></td>
  1515. <td class="xl70"></td>
  1516. </tr>
  1517. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1518. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王克俊</td>
  1519. <td class="xl68" align="right" x:num>15032158</td>
  1520. <td class="xl68" x:str>女</td>
  1521. <td class="xl70"></td>
  1522. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1523. <td class="xl68"></td>
  1524. <td class="xl70"></td>
  1525. <td class="xl70"></td>
  1526. <td class="xl70"></td>
  1527. </tr>
  1528. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1529. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张芳</td>
  1530. <td class="xl68" align="right" x:num>15036498</td>
  1531. <td class="xl68" x:str>女</td>
  1532. <td class="xl70"></td>
  1533. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  1534. <td class="xl68"></td>
  1535. <td class="xl70"></td>
  1536. <td class="xl70"></td>
  1537. <td class="xl70"></td>
  1538. </tr>
  1539. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1540. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李志强</td>
  1541. <td class="xl68" align="right" x:num>15036543</td>
  1542. <td class="xl68" x:str>女</td>
  1543. <td class="xl70"></td>
  1544. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1545. <td class="xl68"></td>
  1546. <td class="xl70"></td>
  1547. <td class="xl70"></td>
  1548. <td class="xl70"></td>
  1549. </tr>
  1550. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1551. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>海煜</td>
  1552. <td class="xl68" align="right" x:num>15036544</td>
  1553. <td class="xl68" x:str>女</td>
  1554. <td class="xl70"></td>
  1555. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1556. <td class="xl68"></td>
  1557. <td class="xl70"></td>
  1558. <td class="xl70"></td>
  1559. <td class="xl70"></td>
  1560. </tr>
  1561. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1562. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>田媛</td>
  1563. <td class="xl68" align="right" x:num>15036545</td>
  1564. <td class="xl68" x:str>女</td>
  1565. <td class="xl70"></td>
  1566. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1567. <td class="xl68"></td>
  1568. <td class="xl70"></td>
  1569. <td class="xl70"></td>
  1570. <td class="xl70"></td>
  1571. </tr>
  1572. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1573. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>曹晓乐</td>
  1574. <td class="xl68" align="right" x:num>15036547</td>
  1575. <td class="xl68" x:str>女</td>
  1576. <td class="xl70"></td>
  1577. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1578. <td class="xl68"></td>
  1579. <td class="xl70"></td>
  1580. <td class="xl70"></td>
  1581. <td class="xl70"></td>
  1582. </tr>
  1583. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1584. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王森</td>
  1585. <td class="xl68" align="right" x:num>15036335</td>
  1586. <td class="xl68" x:str>女</td>
  1587. <td class="xl70"></td>
  1588. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1589. <td class="xl68"></td>
  1590. <td class="xl70"></td>
  1591. <td class="xl70"></td>
  1592. <td class="xl70"></td>
  1593. </tr>
  1594. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1595. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马旭</td>
  1596. <td class="xl68" align="right" x:num>15036540</td>
  1597. <td class="xl68" x:str>女</td>
  1598. <td class="xl70"></td>
  1599. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1600. <td class="xl68"></td>
  1601. <td class="xl70"></td>
  1602. <td class="xl70"></td>
  1603. <td class="xl70"></td>
  1604. </tr>
  1605. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1606. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>白宁</td>
  1607. <td class="xl68" align="right" x:num>15036541</td>
  1608. <td class="xl68" x:str>女</td>
  1609. <td class="xl70"></td>
  1610. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1611. <td class="xl68"></td>
  1612. <td class="xl70"></td>
  1613. <td class="xl70"></td>
  1614. <td class="xl70"></td>
  1615. </tr>
  1616. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1617. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘亚琼</td>
  1618. <td class="xl68" align="right" x:num>15036542</td>
  1619. <td class="xl68" x:str>女</td>
  1620. <td class="xl70"></td>
  1621. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1622. <td class="xl68"></td>
  1623. <td class="xl70"></td>
  1624. <td class="xl70"></td>
  1625. <td class="xl70"></td>
  1626. </tr>
  1627. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1628. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李新忠</td>
  1629. <td class="xl68" align="right" x:num>15036534</td>
  1630. <td class="xl68" x:str>女</td>
  1631. <td class="xl70"></td>
  1632. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1633. <td class="xl68"></td>
  1634. <td class="xl70"></td>
  1635. <td class="xl70"></td>
  1636. <td class="xl70"></td>
  1637. </tr>
  1638. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1639. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>唐骏</td>
  1640. <td class="xl68" align="right" x:num>15036535</td>
  1641. <td class="xl68" x:str>女</td>
  1642. <td class="xl70"></td>
  1643. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1644. <td class="xl68"></td>
  1645. <td class="xl70"></td>
  1646. <td class="xl70"></td>
  1647. <td class="xl70"></td>
  1648. </tr>
  1649. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1650. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>许文善</td>
  1651. <td class="xl68" align="right" x:num>15036538</td>
  1652. <td class="xl68" x:str>女</td>
  1653. <td class="xl70"></td>
  1654. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1655. <td class="xl68"></td>
  1656. <td class="xl70"></td>
  1657. <td class="xl70"></td>
  1658. <td class="xl70"></td>
  1659. </tr>
  1660. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1661. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>程智强</td>
  1662. <td class="xl68" align="right" x:num>15036539</td>
  1663. <td class="xl68" x:str>女</td>
  1664. <td class="xl70"></td>
  1665. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1666. <td class="xl68"></td>
  1667. <td class="xl70"></td>
  1668. <td class="xl70"></td>
  1669. <td class="xl70"></td>
  1670. </tr>
  1671. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1672. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张茂民</td>
  1673. <td class="xl68" align="right" x:num>15036525</td>
  1674. <td class="xl68" x:str>女</td>
  1675. <td class="xl70"></td>
  1676. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1677. <td class="xl68"></td>
  1678. <td class="xl70"></td>
  1679. <td class="xl70"></td>
  1680. <td class="xl70"></td>
  1681. </tr>
  1682. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1683. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>秦冬堂</td>
  1684. <td class="xl68" align="right" x:num>15036523</td>
  1685. <td class="xl68" x:str>女</td>
  1686. <td class="xl70"></td>
  1687. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1688. <td class="xl68"></td>
  1689. <td class="xl70"></td>
  1690. <td class="xl70"></td>
  1691. <td class="xl70"></td>
  1692. </tr>
  1693. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1694. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>何铅</td>
  1695. <td class="xl68" align="right" x:num>15036524</td>
  1696. <td class="xl68" x:str>女</td>
  1697. <td class="xl70"></td>
  1698. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1699. <td class="xl68"></td>
  1700. <td class="xl70"></td>
  1701. <td class="xl70"></td>
  1702. <td class="xl70"></td>
  1703. </tr>
  1704. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1705. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋海琴</td>
  1706. <td class="xl68" align="right" x:num>15036528</td>
  1707. <td class="xl68" x:str>女</td>
  1708. <td class="xl70"></td>
  1709. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1710. <td class="xl68"></td>
  1711. <td class="xl70"></td>
  1712. <td class="xl70"></td>
  1713. <td class="xl70"></td>
  1714. </tr>
  1715. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1716. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张伟</td>
  1717. <td class="xl68" align="right" x:num>15036530</td>
  1718. <td class="xl68" x:str>女</td>
  1719. <td class="xl70"></td>
  1720. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1721. <td class="xl68"></td>
  1722. <td class="xl70"></td>
  1723. <td class="xl70"></td>
  1724. <td class="xl70"></td>
  1725. </tr>
  1726. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1727. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>田峰</td>
  1728. <td class="xl68" align="right" x:num>15036533</td>
  1729. <td class="xl68" x:str>女</td>
  1730. <td class="xl70"></td>
  1731. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1732. <td class="xl68"></td>
  1733. <td class="xl70"></td>
  1734. <td class="xl70"></td>
  1735. <td class="xl70"></td>
  1736. </tr>
  1737. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1738. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘西宁</td>
  1739. <td class="xl68" align="right" x:num>15036441</td>
  1740. <td class="xl68" x:str>女</td>
  1741. <td class="xl70"></td>
  1742. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
  1743. <td class="xl68"></td>
  1744. <td class="xl70"></td>
  1745. <td class="xl70"></td>
  1746. <td class="xl70"></td>
  1747. </tr>
  1748. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1749. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘松芳</td>
  1750. <td class="xl68" align="right" x:num>15036311</td>
  1751. <td class="xl68" x:str>女</td>
  1752. <td class="xl70"></td>
  1753. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
  1754. <td class="xl68"></td>
  1755. <td class="xl70"></td>
  1756. <td class="xl70"></td>
  1757. <td class="xl70"></td>
  1758. </tr>
  1759. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1760. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>安玉红</td>
  1761. <td class="xl68" align="right" x:num>15036313</td>
  1762. <td class="xl68" x:str>女</td>
  1763. <td class="xl70"></td>
  1764. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
  1765. <td class="xl68"></td>
  1766. <td class="xl70"></td>
  1767. <td class="xl70"></td>
  1768. <td class="xl70"></td>
  1769. </tr>
  1770. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1771. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>郎旭</td>
  1772. <td class="xl68" align="right" x:num>15036349</td>
  1773. <td class="xl68" x:str>女</td>
  1774. <td class="xl70"></td>
  1775. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
  1776. <td class="xl68"></td>
  1777. <td class="xl70"></td>
  1778. <td class="xl70"></td>
  1779. <td class="xl70"></td>
  1780. </tr>
  1781. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1782. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>李智敏</td>
  1783. <td class="xl68" align="right" x:num>15036509</td>
  1784. <td class="xl68" x:str>女</td>
  1785. <td class="xl70"></td>
  1786. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1787. <td class="xl68"></td>
  1788. <td class="xl70"></td>
  1789. <td class="xl70"></td>
  1790. <td class="xl70"></td>
  1791. </tr>
  1792. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1793. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>冯蕾</td>
  1794. <td class="xl68" align="right" x:num>15036522</td>
  1795. <td class="xl68" x:str>女</td>
  1796. <td class="xl70"></td>
  1797. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  1798. <td class="xl68"></td>
  1799. <td class="xl70"></td>
  1800. <td class="xl70"></td>
  1801. <td class="xl70"></td>
  1802. </tr>
  1803. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1804. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王左君</td>
  1805. <td class="xl68" align="right" x:num>15036546</td>
  1806. <td class="xl68" x:str>女</td>
  1807. <td class="xl70"></td>
  1808. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1809. <td class="xl68"></td>
  1810. <td class="xl70"></td>
  1811. <td class="xl70"></td>
  1812. <td class="xl70"></td>
  1813. </tr>
  1814. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1815. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王强</td>
  1816. <td class="xl68" align="right" x:num>15036292</td>
  1817. <td class="xl68" x:str>女</td>
  1818. <td class="xl70"></td>
  1819. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1820. <td class="xl68"></td>
  1821. <td class="xl70"></td>
  1822. <td class="xl70"></td>
  1823. <td class="xl70"></td>
  1824. </tr>
  1825. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1826. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>沈艳莉</td>
  1827. <td class="xl68" align="right" x:num>15036293</td>
  1828. <td class="xl68" x:str>女</td>
  1829. <td class="xl70"></td>
  1830. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1831. <td class="xl68"></td>
  1832. <td class="xl70"></td>
  1833. <td class="xl70"></td>
  1834. <td class="xl70"></td>
  1835. </tr>
  1836. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1837. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张幼平</td>
  1838. <td class="xl68" align="right" x:num>15036294</td>
  1839. <td class="xl68" x:str>女</td>
  1840. <td class="xl70"></td>
  1841. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1842. <td class="xl68"></td>
  1843. <td class="xl70"></td>
  1844. <td class="xl70"></td>
  1845. <td class="xl70"></td>
  1846. </tr>
  1847. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1848. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>雷玲燕</td>
  1849. <td class="xl68" align="right" x:num>15036295</td>
  1850. <td class="xl68" x:str>女</td>
  1851. <td class="xl70"></td>
  1852. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1853. <td class="xl68"></td>
  1854. <td class="xl70"></td>
  1855. <td class="xl70"></td>
  1856. <td class="xl70"></td>
  1857. </tr>
  1858. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1859. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>马伟</td>
  1860. <td class="xl68" align="right" x:num>15036348</td>
  1861. <td class="xl68" x:str>女</td>
  1862. <td class="xl70"></td>
  1863. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心党群工作部</td>
  1864. <td class="xl68"></td>
  1865. <td class="xl70"></td>
  1866. <td class="xl70"></td>
  1867. <td class="xl70"></td>
  1868. </tr>
  1869. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1870. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>边杰</td>
  1871. <td class="xl68" align="right" x:num>15036344</td>
  1872. <td class="xl68" x:str>女</td>
  1873. <td class="xl70"></td>
  1874. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1875. <td class="xl68"></td>
  1876. <td class="xl70"></td>
  1877. <td class="xl70"></td>
  1878. <td class="xl70"></td>
  1879. </tr>
  1880. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1881. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王鲁</td>
  1882. <td class="xl68" align="right" x:num>15036440</td>
  1883. <td class="xl68" x:str>女</td>
  1884. <td class="xl70"></td>
  1885. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1886. <td class="xl68"></td>
  1887. <td class="xl70"></td>
  1888. <td class="xl70"></td>
  1889. <td class="xl70"></td>
  1890. </tr>
  1891. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1892. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>高雷</td>
  1893. <td class="xl68" align="right" x:num>15036507</td>
  1894. <td class="xl68" x:str>女</td>
  1895. <td class="xl70"></td>
  1896. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1897. <td class="xl68"></td>
  1898. <td class="xl70"></td>
  1899. <td class="xl70"></td>
  1900. <td class="xl70"></td>
  1901. </tr>
  1902. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1903. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张娜</td>
  1904. <td class="xl68" align="right" x:num>15009130</td>
  1905. <td class="xl68" x:str>女</td>
  1906. <td class="xl70"></td>
  1907. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1908. <td class="xl68"></td>
  1909. <td class="xl70"></td>
  1910. <td class="xl70"></td>
  1911. <td class="xl70"></td>
  1912. </tr>
  1913. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1914. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>邹健</td>
  1915. <td class="xl68" align="right" x:num>15112020</td>
  1916. <td class="xl68" x:str>女</td>
  1917. <td class="xl70"></td>
  1918. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1919. <td class="xl68"></td>
  1920. <td class="xl70"></td>
  1921. <td class="xl70"></td>
  1922. <td class="xl70"></td>
  1923. </tr>
  1924. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1925. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>刘建平</td>
  1926. <td class="xl68" align="right" x:num>15036326</td>
  1927. <td class="xl68" x:str>女</td>
  1928. <td class="xl70"></td>
  1929. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1930. <td class="xl68"></td>
  1931. <td class="xl70"></td>
  1932. <td class="xl70"></td>
  1933. <td class="xl70"></td>
  1934. </tr>
  1935. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1936. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>荀亚林</td>
  1937. <td class="xl68" align="right" x:num>15036334</td>
  1938. <td class="xl68" x:str>女</td>
  1939. <td class="xl70"></td>
  1940. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1941. <td class="xl68"></td>
  1942. <td class="xl70"></td>
  1943. <td class="xl70"></td>
  1944. <td class="xl70"></td>
  1945. </tr>
  1946. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1947. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>桂伟</td>
  1948. <td class="xl68" align="right" x:num>15036338</td>
  1949. <td class="xl68" x:str>女</td>
  1950. <td class="xl70"></td>
  1951. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1952. <td class="xl68"></td>
  1953. <td class="xl70"></td>
  1954. <td class="xl70"></td>
  1955. <td class="xl70"></td>
  1956. </tr>
  1957. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1958. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>张彩霞</td>
  1959. <td class="xl68" align="right" x:num>15036340</td>
  1960. <td class="xl68" x:str>女</td>
  1961. <td class="xl70"></td>
  1962. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1963. <td class="xl68"></td>
  1964. <td class="xl70"></td>
  1965. <td class="xl70"></td>
  1966. <td class="xl70"></td>
  1967. </tr>
  1968. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1969. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>陈旭东</td>
  1970. <td class="xl68" align="right" x:num>15036343</td>
  1971. <td class="xl68" x:str>女</td>
  1972. <td class="xl70"></td>
  1973. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1974. <td class="xl68"></td>
  1975. <td class="xl70"></td>
  1976. <td class="xl70"></td>
  1977. <td class="xl70"></td>
  1978. </tr>
  1979. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1980. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>宋璟玥</td>
  1981. <td class="xl68" align="right" x:num>15035340</td>
  1982. <td class="xl68" x:str>女</td>
  1983. <td class="xl70"></td>
  1984. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1985. <td class="xl68"></td>
  1986. <td class="xl70"></td>
  1987. <td class="xl70"></td>
  1988. <td class="xl70"></td>
  1989. </tr>
  1990. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  1991. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>王淑琴</td>
  1992. <td class="xl68" align="right" x:num>15036324</td>
  1993. <td class="xl68" x:str>女</td>
  1994. <td class="xl70"></td>
  1995. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  1996. <td class="xl68"></td>
  1997. <td class="xl70"></td>
  1998. <td class="xl70"></td>
  1999. <td class="xl70"></td>
  2000. </tr>
  2001. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  2002. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>杨志俊</td>
  2003. <td class="xl68" align="right" x:num>15036325</td>
  2004. <td class="xl68" x:str>女</td>
  2005. <td class="xl70"></td>
  2006. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  2007. <td class="xl68"></td>
  2008. <td class="xl70"></td>
  2009. <td class="xl70"></td>
  2010. <td class="xl70"></td>
  2011. </tr>
  2012. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  2013. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>史素云</td>
  2014. <td class="xl68" align="right" x:num>15004593</td>
  2015. <td class="xl68" x:str>女</td>
  2016. <td class="xl70"></td>
  2017. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2018. <td class="xl68"></td>
  2019. <td class="xl70"></td>
  2020. <td class="xl70"></td>
  2021. <td class="xl70"></td>
  2022. </tr>
  2023. <tr height="16.85" style='height:16.85pt;mso-height-source:userset;mso-height-alt:337;'>
  2024. <td class="xl68" height="16.85" style='height:16.85pt;' x:str>闫茂云</td>
  2025. <td class="xl68" align="right" x:num>15006131</td>
  2026. <td class="xl68" x:str>女</td>
  2027. <td class="xl70"></td>
  2028. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
  2029. <td class="xl68"></td>
  2030. <td class="xl70"></td>
  2031. <td class="xl70"></td>
  2032. <td class="xl70"></td>
  2033. </tr>
  2034. <tr height="17.60" style='height:17.60pt;'>
  2035. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵秀芳</td>
  2036. <td class="xl68" align="right" x:num>15036332</td>
  2037. <td class="xl68" x:str>女</td>
  2038. <td></td>
  2039. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
  2040. <td class="xl68"></td>
  2041. <td colspan="3" style='mso-ignore:colspan;'></td>
  2042. </tr>
  2043. <tr height="17.60" style='height:17.60pt;'>
  2044. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李丽艳</td>
  2045. <td class="xl68" align="right" x:num>15036302</td>
  2046. <td class="xl68" x:str>女</td>
  2047. <td></td>
  2048. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2049. <td class="xl68"></td>
  2050. <td colspan="3" style='mso-ignore:colspan;'></td>
  2051. </tr>
  2052. <tr height="17.60" style='height:17.60pt;'>
  2053. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张改丽</td>
  2054. <td class="xl68" align="right" x:num>15036304</td>
  2055. <td class="xl68" x:str>女</td>
  2056. <td></td>
  2057. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2058. <td class="xl68"></td>
  2059. <td colspan="3" style='mso-ignore:colspan;'></td>
  2060. </tr>
  2061. <tr height="17.60" style='height:17.60pt;'>
  2062. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>范惠宁</td>
  2063. <td class="xl68" align="right" x:num>15036306</td>
  2064. <td class="xl68" x:str>女</td>
  2065. <td></td>
  2066. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2067. <td class="xl68"></td>
  2068. <td colspan="3" style='mso-ignore:colspan;'></td>
  2069. </tr>
  2070. <tr height="17.60" style='height:17.60pt;'>
  2071. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>郝建宁</td>
  2072. <td class="xl68" align="right" x:num>15036307</td>
  2073. <td class="xl68" x:str>女</td>
  2074. <td></td>
  2075. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2076. <td class="xl68"></td>
  2077. <td colspan="3" style='mso-ignore:colspan;'></td>
  2078. </tr>
  2079. <tr height="17.60" style='height:17.60pt;'>
  2080. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>崔庆</td>
  2081. <td class="xl68" align="right" x:num>15036308</td>
  2082. <td class="xl68" x:str>女</td>
  2083. <td></td>
  2084. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2085. <td class="xl68"></td>
  2086. <td colspan="3" style='mso-ignore:colspan;'></td>
  2087. </tr>
  2088. <tr height="17.60" style='height:17.60pt;'>
  2089. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张海东</td>
  2090. <td class="xl68" align="right" x:num>15036310</td>
  2091. <td class="xl68" x:str>女</td>
  2092. <td></td>
  2093. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2094. <td class="xl68"></td>
  2095. <td colspan="3" style='mso-ignore:colspan;'></td>
  2096. </tr>
  2097. <tr height="17.60" style='height:17.60pt;'>
  2098. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨滨</td>
  2099. <td class="xl68" align="right" x:num>15003721</td>
  2100. <td class="xl68" x:str>女</td>
  2101. <td></td>
  2102. <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
  2103. <td class="xl68"></td>
  2104. <td colspan="3" style='mso-ignore:colspan;'></td>
  2105. </tr>
  2106. <tr height="17.60" style='height:17.60pt;'>
  2107. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>何志强</td>
  2108. <td class="xl68" align="right" x:num>15036287</td>
  2109. <td class="xl68" x:str>女</td>
  2110. <td></td>
  2111. <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
  2112. <td class="xl68"></td>
  2113. <td colspan="3" style='mso-ignore:colspan;'></td>
  2114. </tr>
  2115. <tr height="17.60" style='height:17.60pt;'>
  2116. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>邢宝星</td>
  2117. <td class="xl68" align="right" x:num>15006130</td>
  2118. <td class="xl68" x:str>女</td>
  2119. <td></td>
  2120. <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
  2121. <td class="xl68"></td>
  2122. <td colspan="3" style='mso-ignore:colspan;'></td>
  2123. </tr>
  2124. <tr height="17.60" style='height:17.60pt;'>
  2125. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>林红梅</td>
  2126. <td class="xl68" align="right" x:num>15036342</td>
  2127. <td class="xl68" x:str>女</td>
  2128. <td></td>
  2129. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心副总</td>
  2130. <td class="xl68"></td>
  2131. <td colspan="3" style='mso-ignore:colspan;'></td>
  2132. </tr>
  2133. <tr height="17.60" style='height:17.60pt;'>
  2134. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李林</td>
  2135. <td class="xl68" align="right" x:num>15036301</td>
  2136. <td class="xl68" x:str>女</td>
  2137. <td></td>
  2138. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心综合管理部</td>
  2139. <td class="xl68"></td>
  2140. <td colspan="3" style='mso-ignore:colspan;'></td>
  2141. </tr>
  2142. <tr height="17.60" style='height:17.60pt;'>
  2143. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张杰</td>
  2144. <td class="xl68" align="right" x:num>15036284</td>
  2145. <td class="xl68" x:str>女</td>
  2146. <td></td>
  2147. <td class="xl68" x:str>国家能源集团/宁东运营部/信息中心领导班子</td>
  2148. <td class="xl68"></td>
  2149. <td colspan="3" style='mso-ignore:colspan;'></td>
  2150. </tr>
  2151. <tr height="17.60" style='height:17.60pt;'>
  2152. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王玉芹</td>
  2153. <td class="xl68" align="right" x:num>1010039</td>
  2154. <td class="xl68" x:str>女</td>
  2155. <td></td>
  2156. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  2157. <td class="xl68"></td>
  2158. <td colspan="3" style='mso-ignore:colspan;'></td>
  2159. </tr>
  2160. <tr height="17.60" style='height:17.60pt;'>
  2161. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>贺小云</td>
  2162. <td class="xl68" align="right" x:num>1036444</td>
  2163. <td class="xl68" x:str>女</td>
  2164. <td></td>
  2165. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  2166. <td class="xl68"></td>
  2167. <td colspan="3" style='mso-ignore:colspan;'></td>
  2168. </tr>
  2169. <tr height="17.60" style='height:17.60pt;'>
  2170. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李玉娟</td>
  2171. <td class="xl68" align="right" x:num>1036336</td>
  2172. <td class="xl68" x:str>女</td>
  2173. <td></td>
  2174. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  2175. <td class="xl68"></td>
  2176. <td colspan="3" style='mso-ignore:colspan;'></td>
  2177. </tr>
  2178. <tr height="17.60" style='height:17.60pt;'>
  2179. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>梁君</td>
  2180. <td class="xl68" align="right" x:num>1036345</td>
  2181. <td class="xl68" x:str>女</td>
  2182. <td></td>
  2183. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  2184. <td class="xl68"></td>
  2185. <td colspan="3" style='mso-ignore:colspan;'></td>
  2186. </tr>
  2187. <tr height="17.60" style='height:17.60pt;'>
  2188. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>秦冬堂</td>
  2189. <td class="xl68" align="right" x:num>1036523</td>
  2190. <td class="xl68" x:str>女</td>
  2191. <td></td>
  2192. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  2193. <td class="xl68"></td>
  2194. <td colspan="3" style='mso-ignore:colspan;'></td>
  2195. </tr>
  2196. <tr height="17.60" style='height:17.60pt;'>
  2197. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王涛</td>
  2198. <td class="xl68" align="right" x:num>15036443</td>
  2199. <td class="xl68" x:str>女</td>
  2200. <td></td>
  2201. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  2202. <td class="xl68"></td>
  2203. <td colspan="3" style='mso-ignore:colspan;'></td>
  2204. </tr>
  2205. <tr height="17.60" style='height:17.60pt;'>
  2206. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王涛</td>
  2207. <td class="xl68" align="right" x:num>15909508520</td>
  2208. <td class="xl68" x:str>男</td>
  2209. <td></td>
  2210. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  2211. <td class="xl68"></td>
  2212. <td colspan="3" style='mso-ignore:colspan;'></td>
  2213. </tr>
  2214. <tr height="17.60" style='height:17.60pt;'>
  2215. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨欢-物业</td>
  2216. <td class="xl68" align="right" x:num>100</td>
  2217. <td class="xl68" x:str>男</td>
  2218. <td></td>
  2219. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  2220. <td class="xl68"></td>
  2221. <td colspan="3" style='mso-ignore:colspan;'></td>
  2222. </tr>
  2223. <tr height="17.60" style='height:17.60pt;'>
  2224. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李晨雨</td>
  2225. <td class="xl68" align="right" x:num>20042057</td>
  2226. <td class="xl68" x:str>男</td>
  2227. <td></td>
  2228. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2229. <td class="xl68"></td>
  2230. <td colspan="3" style='mso-ignore:colspan;'></td>
  2231. </tr>
  2232. <tr height="17.60" style='height:17.60pt;'>
  2233. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>吴嘉敏</td>
  2234. <td class="xl68" align="right" x:num>20042056</td>
  2235. <td class="xl68" x:str>女</td>
  2236. <td></td>
  2237. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  2238. <td class="xl68" x:str>技术员</td>
  2239. <td colspan="3" style='mso-ignore:colspan;'></td>
  2240. </tr>
  2241. <tr height="17.60" style='height:17.60pt;'>
  2242. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>煤科院徐华龙<span style='display:none;'></span></td>
  2243. <td class="xl68" align="right" x:num>650007</td>
  2244. <td class="xl68" x:str>男</td>
  2245. <td></td>
  2246. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  2247. <td class="xl68" x:str>主管技术员</td>
  2248. <td colspan="3" style='mso-ignore:colspan;'></td>
  2249. </tr>
  2250. <tr height="17.60" style='height:17.60pt;'>
  2251. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨雪玲</td>
  2252. <td class="xl68" align="right" x:num>15036519</td>
  2253. <td class="xl68" x:str>女</td>
  2254. <td></td>
  2255. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  2256. <td class="xl68"></td>
  2257. <td colspan="3" style='mso-ignore:colspan;'></td>
  2258. </tr>
  2259. <tr height="17.60" style='height:17.60pt;'>
  2260. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>田野</td>
  2261. <td class="xl68" align="right" x:num>15054040</td>
  2262. <td class="xl68" x:str>女</td>
  2263. <td></td>
  2264. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  2265. <td class="xl68"></td>
  2266. <td colspan="3" style='mso-ignore:colspan;'></td>
  2267. </tr>
  2268. <tr height="17.60" style='height:17.60pt;'>
  2269. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张一苇</td>
  2270. <td class="xl68" align="right" x:num>15102665</td>
  2271. <td class="xl68" x:str>女</td>
  2272. <td></td>
  2273. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心信息系统管理部</td>
  2274. <td class="xl68"></td>
  2275. <td colspan="3" style='mso-ignore:colspan;'></td>
  2276. </tr>
  2277. <tr height="17.60" style='height:17.60pt;'>
  2278. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>陈秋月</td>
  2279. <td class="xl68" align="right" x:num>20036613</td>
  2280. <td class="xl68" x:str>女</td>
  2281. <td></td>
  2282. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2283. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2284. <td colspan="2" style='mso-ignore:colspan;'></td>
  2285. </tr>
  2286. <tr height="17.60" style='height:17.60pt;'>
  2287. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张超</td>
  2288. <td class="xl68" align="right" x:num>15058692</td>
  2289. <td class="xl68" x:str>男</td>
  2290. <td></td>
  2291. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2292. <td class="xl68" x:str>技术员</td>
  2293. <td colspan="3" style='mso-ignore:colspan;'></td>
  2294. </tr>
  2295. <tr height="17.60" style='height:17.60pt;'>
  2296. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>姚小霞</td>
  2297. <td class="xl68" align="right" x:num>15108030</td>
  2298. <td class="xl68" x:str>女</td>
  2299. <td></td>
  2300. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2301. <td class="xl68" x:str>技术员</td>
  2302. <td colspan="3" style='mso-ignore:colspan;'></td>
  2303. </tr>
  2304. <tr height="17.60" style='height:17.60pt;'>
  2305. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>胡业梅</td>
  2306. <td class="xl68" align="right" x:num>15036478</td>
  2307. <td class="xl68" x:str>女</td>
  2308. <td></td>
  2309. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心银川运营部</td>
  2310. <td class="xl68"></td>
  2311. <td colspan="3" style='mso-ignore:colspan;'></td>
  2312. </tr>
  2313. <tr height="17.60" style='height:17.60pt;'>
  2314. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>芦胜金</td>
  2315. <td class="xl68" align="right" x:num>15036480</td>
  2316. <td class="xl68" x:str>女</td>
  2317. <td></td>
  2318. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心应用系统研发部</td>
  2319. <td class="xl68"></td>
  2320. <td colspan="3" style='mso-ignore:colspan;'></td>
  2321. </tr>
  2322. <tr height="17.60" style='height:17.60pt;'>
  2323. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>曹玮琦</td>
  2324. <td class="xl68" align="right" x:num>15036520</td>
  2325. <td class="xl68" x:str>女</td>
  2326. <td></td>
  2327. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心计费管理部</td>
  2328. <td class="xl68"></td>
  2329. <td colspan="3" style='mso-ignore:colspan;'></td>
  2330. </tr>
  2331. <tr height="17.60" style='height:17.60pt;'>
  2332. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>杨自芬</td>
  2333. <td class="xl68" align="right" x:num>15054043</td>
  2334. <td class="xl68" x:str>女</td>
  2335. <td></td>
  2336. <td class="xl68" x:str>国家能源集团/宁东运营部/国家能源集团/宁东运营部/信息中心领导班子/信息中心人力资源部</td>
  2337. <td class="xl68"></td>
  2338. <td colspan="3" style='mso-ignore:colspan;'></td>
  2339. </tr>
  2340. <tr height="17.60" style='height:17.60pt;'>
  2341. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>宁夏世纪潮</td>
  2342. <td class="xl68" align="right" x:num>650005</td>
  2343. <td class="xl68" x:str>男</td>
  2344. <td></td>
  2345. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  2346. <td class="xl68"></td>
  2347. <td colspan="3" style='mso-ignore:colspan;'></td>
  2348. </tr>
  2349. <tr height="17.60" style='height:17.60pt;'>
  2350. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>煤科院徐正国<span style='display:none;'></span></td>
  2351. <td class="xl68" align="right" x:num>650004</td>
  2352. <td class="xl68" x:str>男</td>
  2353. <td></td>
  2354. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站/委外单位</td>
  2355. <td class="xl68"></td>
  2356. <td colspan="3" style='mso-ignore:colspan;'></td>
  2357. </tr>
  2358. <tr height="17.60" style='height:17.60pt;'>
  2359. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>莫毅彬</td>
  2360. <td class="xl68" align="right" x:num>15036452</td>
  2361. <td class="xl68" x:str>男</td>
  2362. <td></td>
  2363. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  2364. <td class="xl68" x:str>汽车驾驶员</td>
  2365. <td colspan="3" style='mso-ignore:colspan;'></td>
  2366. </tr>
  2367. <tr height="17.60" style='height:17.60pt;'>
  2368. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>薛若彤</td>
  2369. <td class="xl68" align="right" x:num>20036615</td>
  2370. <td class="xl68" x:str>女</td>
  2371. <td></td>
  2372. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  2373. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2374. <td colspan="2" style='mso-ignore:colspan;'></td>
  2375. </tr>
  2376. <tr height="17.60" style='height:17.60pt;'>
  2377. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张建</td>
  2378. <td class="xl68" align="right" x:num>15036491</td>
  2379. <td class="xl68" x:str>男</td>
  2380. <td></td>
  2381. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2382. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2383. <td colspan="2" style='mso-ignore:colspan;'></td>
  2384. </tr>
  2385. <tr height="17.60" style='height:17.60pt;'>
  2386. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>房元新</td>
  2387. <td class="xl68" align="right" x:num>15054045</td>
  2388. <td class="xl68" x:str>男</td>
  2389. <td></td>
  2390. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2391. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2392. <td colspan="2" style='mso-ignore:colspan;'></td>
  2393. </tr>
  2394. <tr height="17.60" style='height:17.60pt;'>
  2395. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>高岩</td>
  2396. <td class="xl68" align="right" x:num>15056938</td>
  2397. <td class="xl68" x:str>男</td>
  2398. <td></td>
  2399. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  2400. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2401. <td colspan="2" style='mso-ignore:colspan;'></td>
  2402. </tr>
  2403. <tr height="17.60" style='height:17.60pt;'>
  2404. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>贾磊</td>
  2405. <td class="xl68" align="right" x:num>15102667</td>
  2406. <td class="xl68" x:str>男</td>
  2407. <td></td>
  2408. <td class="xl72" x:str>国家能源集团<font class="font25">/</font><font class="font5">宁东运营部</font><font class="font25">/</font><font class="font5">信息化站</font></td>
  2409. <td class="xl68" x:str>技术员</td>
  2410. <td colspan="3" style='mso-ignore:colspan;'></td>
  2411. </tr>
  2412. <tr height="17.60" style='height:17.60pt;'>
  2413. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>费勤华</td>
  2414. <td class="xl68" align="right" x:num>15036492</td>
  2415. <td class="xl68" x:str>男</td>
  2416. <td></td>
  2417. <td class="xl72" x:str>国家能源集团/宁东运营部/中心领导</td>
  2418. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2419. <td colspan="2" style='mso-ignore:colspan;'></td>
  2420. </tr>
  2421. <tr height="17.60" style='height:17.60pt;'>
  2422. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张宝霞</td>
  2423. <td class="xl68" align="right" x:num>15036497</td>
  2424. <td class="xl68" x:str>女</td>
  2425. <td></td>
  2426. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2427. <td class="xl68" x:str>技术员</td>
  2428. <td colspan="3" style='mso-ignore:colspan;'></td>
  2429. </tr>
  2430. <tr height="17.60" style='height:17.60pt;'>
  2431. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马明君</td>
  2432. <td class="xl68" align="right" x:num>15036511</td>
  2433. <td class="xl68" x:str>男</td>
  2434. <td></td>
  2435. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2436. <td class="xl68" x:str>主管技术员</td>
  2437. <td colspan="3" style='mso-ignore:colspan;'></td>
  2438. </tr>
  2439. <tr height="17.60" style='height:17.60pt;'>
  2440. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>蔡文斌</td>
  2441. <td class="xl68" align="right" x:num>15036483</td>
  2442. <td class="xl68" x:str>男</td>
  2443. <td></td>
  2444. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2445. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2446. <td colspan="2" style='mso-ignore:colspan;'></td>
  2447. </tr>
  2448. <tr height="17.60" style='height:17.60pt;'>
  2449. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马伏祥</td>
  2450. <td class="xl68" align="right" x:num>15036484</td>
  2451. <td class="xl68" x:str>男</td>
  2452. <td></td>
  2453. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2454. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2455. <td colspan="2" style='mso-ignore:colspan;'></td>
  2456. </tr>
  2457. <tr height="17.60" style='height:17.60pt;'>
  2458. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>马春仁</td>
  2459. <td class="xl68" align="right" x:num>15036485</td>
  2460. <td class="xl68" x:str>男</td>
  2461. <td></td>
  2462. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2463. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2464. <td colspan="2" style='mso-ignore:colspan;'></td>
  2465. </tr>
  2466. <tr height="17.60" style='height:17.60pt;'>
  2467. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>李佳</td>
  2468. <td class="xl68" align="right" x:num>15036487</td>
  2469. <td class="xl68" x:str>男</td>
  2470. <td></td>
  2471. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2472. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2473. <td colspan="2" style='mso-ignore:colspan;'></td>
  2474. </tr>
  2475. <tr height="17.60" style='height:17.60pt;'>
  2476. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>王小贺</td>
  2477. <td class="xl68" align="right" x:num>15036488</td>
  2478. <td class="xl68" x:str>男</td>
  2479. <td></td>
  2480. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2481. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2482. <td colspan="2" style='mso-ignore:colspan;'></td>
  2483. </tr>
  2484. <tr height="17.60" style='height:17.60pt;'>
  2485. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>宋晓光</td>
  2486. <td class="xl68" align="right" x:num>15036489</td>
  2487. <td class="xl68" x:str>男</td>
  2488. <td></td>
  2489. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2490. <td class="xl68" colspan="2" style='mso-ignore:colspan;' x:str>矿井通讯维护工</td>
  2491. <td colspan="2" style='mso-ignore:colspan;'></td>
  2492. </tr>
  2493. <tr height="17.60" style='height:17.60pt;'>
  2494. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>周斌</td>
  2495. <td class="xl68" align="right" x:num>15036453</td>
  2496. <td class="xl68" x:str>男</td>
  2497. <td></td>
  2498. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  2499. <td class="xl68" x:str>汽车驾驶员</td>
  2500. <td colspan="3" style='mso-ignore:colspan;'></td>
  2501. </tr>
  2502. <tr height="17.60" style='height:17.60pt;'>
  2503. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>刘俊良</td>
  2504. <td class="xl68" align="right" x:num>20036611</td>
  2505. <td class="xl68" x:str>男</td>
  2506. <td></td>
  2507. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  2508. <td class="xl68" x:str>技术员</td>
  2509. <td colspan="3" style='mso-ignore:colspan;'></td>
  2510. </tr>
  2511. <tr height="17.60" style='height:17.60pt;'>
  2512. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵玉桂</td>
  2513. <td class="xl68" align="right" x:num>20036612</td>
  2514. <td class="xl68" x:str>男</td>
  2515. <td></td>
  2516. <td class="xl68" x:str>国家能源集团/宁东运营部/工程管理科</td>
  2517. <td class="xl68" x:str>技术员</td>
  2518. <td colspan="3" style='mso-ignore:colspan;'></td>
  2519. </tr>
  2520. <tr height="17.60" style='height:17.60pt;'>
  2521. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>黄涛</td>
  2522. <td class="xl68" align="right" x:num>15036477</td>
  2523. <td class="xl68" x:str>男</td>
  2524. <td></td>
  2525. <td class="xl68" x:str>国家能源集团/宁东运营部/生产技术科</td>
  2526. <td class="xl68" x:str>技术员</td>
  2527. <td colspan="3" style='mso-ignore:colspan;'></td>
  2528. </tr>
  2529. <tr height="17.60" style='height:17.60pt;'>
  2530. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>胡晓梅</td>
  2531. <td class="xl68" align="right" x:num>15036510</td>
  2532. <td class="xl68" x:str>女</td>
  2533. <td></td>
  2534. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  2535. <td class="xl68" x:str>干事</td>
  2536. <td colspan="3" style='mso-ignore:colspan;'></td>
  2537. </tr>
  2538. <tr height="17.60" style='height:17.60pt;'>
  2539. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>殷燕</td>
  2540. <td class="xl68" align="right" x:num>15036512</td>
  2541. <td class="xl68" x:str>女</td>
  2542. <td></td>
  2543. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  2544. <td class="xl68" x:str>营业员</td>
  2545. <td colspan="3" style='mso-ignore:colspan;'></td>
  2546. </tr>
  2547. <tr height="17.60" style='height:17.60pt;'>
  2548. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>崔旭承</td>
  2549. <td class="xl68" align="right" x:num>15036514</td>
  2550. <td class="xl68" x:str>男</td>
  2551. <td></td>
  2552. <td class="xl68" x:str>国家能源集团/宁东运营部/信息化站</td>
  2553. <td class="xl68" x:str>汽车驾驶员</td>
  2554. <td colspan="3" style='mso-ignore:colspan;'></td>
  2555. </tr>
  2556. <tr height="17.60" style='height:17.60pt;'>
  2557. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵静</td>
  2558. <td class="xl68" align="right" x:num>15036516</td>
  2559. <td class="xl68" x:str>女</td>
  2560. <td></td>
  2561. <td class="xl68" x:str>国家能源集团/宁东运营部/综合业务科</td>
  2562. <td class="xl68" x:str>干事</td>
  2563. <td colspan="3" style='mso-ignore:colspan;'></td>
  2564. </tr>
  2565. <tr height="17.60" style='height:17.60pt;'>
  2566. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>张丽</td>
  2567. <td class="xl68" align="right" x:num>15036411</td>
  2568. <td class="xl68" x:str>女</td>
  2569. <td></td>
  2570. <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
  2571. <td class="xl68" x:str>干事</td>
  2572. <td colspan="3" style='mso-ignore:colspan;'></td>
  2573. </tr>
  2574. <tr height="17.60" style='height:17.60pt;'>
  2575. <td class="xl68" height="17.60" style='height:17.60pt;' x:str>赵桠楠</td>
  2576. <td class="xl68" align="right" x:num>15036499</td>
  2577. <td class="xl68" x:str>女</td>
  2578. <td></td>
  2579. <td class="xl68" x:str>国家能源集团/宁东运营部/党群工作组</td>
  2580. <td class="xl68" x:str>技术员</td>
  2581. <td colspan="3" style='mso-ignore:colspan;'></td>
  2582. </tr>
  2583. <![if supportMisalignedColumns]>
  2584. <tr width="0" style='display:none;'>
  2585. <td width="65" style='width:65;'></td>
  2586. <td width="89" style='width:89;'></td>
  2587. <td width="55" style='width:55;'></td>
  2588. <td width="76" style='width:76;'></td>
  2589. <td width="491" style='width:491;'></td>
  2590. <td width="74" style='width:74;'></td>
  2591. <td width="104" style='width:104;'></td>
  2592. <td width="97" style='width:97;'></td>
  2593. <td width="121" style='width:121;'></td>
  2594. </tr>
  2595. <![endif]>
  2596. </table>
  2597. </body>
  2598. </html>