department.json 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412
  1. {
  2. "msg": "200",
  3. "data": [
  4. {
  5. "id": "1",
  6. "code": "00029999",
  7. "name": "采购中心(公共) ",
  8. "tldId": "0d68dd8c-70db-4e7c-b1dc-d31e844420c6 ",
  9. "specificationAndModel": null,
  10. "unitOfMeasurement": null,
  11. "materialId": null,
  12. "num": null,
  13. "type": null,
  14. "tableName": null,
  15. "size": null,
  16. "materialType": null,
  17. "wllbClass": null,
  18. "isNotDisable": null,
  19. "isRecommend": null,
  20. "partType": null,
  21. "page": 0,
  22. "limit": 0,
  23. "amount": null,
  24. "minNum": null,
  25. "maxNum": null,
  26. "modifyUser": null,
  27. "modifyTime": null,
  28. "typeVal": null,
  29. "companyNumber": null,
  30. "warehouseType": null,
  31. "nameOrCode": null
  32. },
  33. {
  34. "id": "2",
  35. "code": "000300010026",
  36. "name": "柜体组装班组",
  37. "tldId": "0f69d975-357d-4d5f-beda-0aa1aa20e43c",
  38. "specificationAndModel": null,
  39. "unitOfMeasurement": null,
  40. "materialId": null,
  41. "num": null,
  42. "type": null,
  43. "tableName": null,
  44. "size": null,
  45. "materialType": null,
  46. "wllbClass": null,
  47. "isNotDisable": null,
  48. "isRecommend": null,
  49. "partType": null,
  50. "page": 0,
  51. "limit": 0,
  52. "amount": null,
  53. "minNum": null,
  54. "maxNum": null,
  55. "modifyUser": null,
  56. "modifyTime": null,
  57. "typeVal": null,
  58. "companyNumber": null,
  59. "warehouseType": null,
  60. "nameOrCode": null
  61. },
  62. {
  63. "id": "3",
  64. "code": "000300010014",
  65. "name": "箱变总装班组",
  66. "tldId": "16573501-9dec-42d1-bc1c-a80e0577f89f",
  67. "specificationAndModel": null,
  68. "unitOfMeasurement": null,
  69. "materialId": null,
  70. "num": null,
  71. "type": null,
  72. "tableName": null,
  73. "size": null,
  74. "materialType": null,
  75. "wllbClass": null,
  76. "isNotDisable": null,
  77. "isRecommend": null,
  78. "partType": null,
  79. "page": 0,
  80. "limit": 0,
  81. "amount": null,
  82. "minNum": null,
  83. "maxNum": null,
  84. "modifyUser": null,
  85. "modifyTime": null,
  86. "typeVal": null,
  87. "companyNumber": null,
  88. "warehouseType": null,
  89. "nameOrCode": null
  90. },
  91. {
  92. "id": "4",
  93. "code": "000300010027",
  94. "name": "标准终端班组",
  95. "tldId": "02a95c2c-3140-4bcc-bced-fe8f188d69d5",
  96. "specificationAndModel": null,
  97. "unitOfMeasurement": null,
  98. "materialId": null,
  99. "num": null,
  100. "type": null,
  101. "tableName": null,
  102. "size": null,
  103. "materialType": null,
  104. "wllbClass": null,
  105. "isNotDisable": null,
  106. "isRecommend": null,
  107. "partType": null,
  108. "page": 0,
  109. "limit": 0,
  110. "amount": null,
  111. "minNum": null,
  112. "maxNum": null,
  113. "modifyUser": null,
  114. "modifyTime": null,
  115. "typeVal": null,
  116. "companyNumber": null,
  117. "warehouseType": null,
  118. "nameOrCode": null
  119. },
  120. {
  121. "id": "5",
  122. "code": "000300030001",
  123. "name": "工艺部",
  124. "tldId": "2586c29c-6f43-446d-805f-0db10e3832ca",
  125. "specificationAndModel": null,
  126. "unitOfMeasurement": null,
  127. "materialId": null,
  128. "num": null,
  129. "type": null,
  130. "tableName": null,
  131. "size": null,
  132. "materialType": null,
  133. "wllbClass": null,
  134. "isNotDisable": null,
  135. "isRecommend": null,
  136. "partType": null,
  137. "page": 0,
  138. "limit": 0,
  139. "amount": null,
  140. "minNum": null,
  141. "maxNum": null,
  142. "modifyUser": null,
  143. "modifyTime": null,
  144. "typeVal": null,
  145. "companyNumber": null,
  146. "warehouseType": null,
  147. "nameOrCode": null
  148. },
  149. {
  150. "id": "6",
  151. "code": "00010001",
  152. "name": "充电质控部",
  153. "tldId": "288dc27e-669d-4e65-b41b-895e6f8a9d7c",
  154. "specificationAndModel": null,
  155. "unitOfMeasurement": null,
  156. "materialId": null,
  157. "num": null,
  158. "type": null,
  159. "tableName": null,
  160. "size": null,
  161. "materialType": null,
  162. "wllbClass": null,
  163. "isNotDisable": null,
  164. "isRecommend": null,
  165. "partType": null,
  166. "page": 0,
  167. "limit": 0,
  168. "amount": null,
  169. "minNum": null,
  170. "maxNum": null,
  171. "modifyUser": null,
  172. "modifyTime": null,
  173. "typeVal": null,
  174. "companyNumber": null,
  175. "warehouseType": null,
  176. "nameOrCode": null
  177. },
  178. {
  179. "id": "7",
  180. "code": "000300010009",
  181. "name": "焊接",
  182. "tldId": "30097351-37f7-4625-8d97-93d4bf60bf9d",
  183. "specificationAndModel": null,
  184. "unitOfMeasurement": null,
  185. "materialId": null,
  186. "num": null,
  187. "type": null,
  188. "tableName": null,
  189. "size": null,
  190. "materialType": null,
  191. "wllbClass": null,
  192. "isNotDisable": null,
  193. "isRecommend": null,
  194. "partType": null,
  195. "page": 0,
  196. "limit": 0,
  197. "amount": null,
  198. "minNum": null,
  199. "maxNum": null,
  200. "modifyUser": null,
  201. "modifyTime": null,
  202. "typeVal": null,
  203. "companyNumber": null,
  204. "warehouseType": null,
  205. "nameOrCode": null
  206. },
  207. {
  208. "id": "8",
  209. "code": "000300010020",
  210. "name": "线边班组",
  211. "tldId": "3149a194-3d26-4ec9-a6e1-7e9eb39f7edd",
  212. "specificationAndModel": null,
  213. "unitOfMeasurement": null,
  214. "materialId": null,
  215. "num": null,
  216. "type": null,
  217. "tableName": null,
  218. "size": null,
  219. "materialType": null,
  220. "wllbClass": null,
  221. "isNotDisable": null,
  222. "isRecommend": null,
  223. "partType": null,
  224. "page": 0,
  225. "limit": 0,
  226. "amount": null,
  227. "minNum": null,
  228. "maxNum": null,
  229. "modifyUser": null,
  230. "modifyTime": null,
  231. "typeVal": null,
  232. "companyNumber": null,
  233. "warehouseType": null,
  234. "nameOrCode": null
  235. },
  236. {
  237. "id": "9",
  238. "code": "000300020002",
  239. "name": "项目管理部",
  240. "tldId": "34411112-e2ef-4a64-9ff1-5561417dec34",
  241. "specificationAndModel": null,
  242. "unitOfMeasurement": null,
  243. "materialId": null,
  244. "num": null,
  245. "type": null,
  246. "tableName": null,
  247. "size": null,
  248. "materialType": null,
  249. "wllbClass": null,
  250. "isNotDisable": null,
  251. "isRecommend": null,
  252. "partType": null,
  253. "page": 0,
  254. "limit": 0,
  255. "amount": null,
  256. "minNum": null,
  257. "maxNum": null,
  258. "modifyUser": null,
  259. "modifyTime": null,
  260. "typeVal": null,
  261. "companyNumber": null,
  262. "warehouseType": null,
  263. "nameOrCode": null
  264. },
  265. {
  266. "id": "10",
  267. "code": "000300010024",
  268. "name": "直流柜班组",
  269. "tldId": "350209f7-7f77-4522-a363-5965e6477279",
  270. "specificationAndModel": null,
  271. "unitOfMeasurement": null,
  272. "materialId": null,
  273. "num": null,
  274. "type": null,
  275. "tableName": null,
  276. "size": null,
  277. "materialType": null,
  278. "wllbClass": null,
  279. "isNotDisable": null,
  280. "isRecommend": null,
  281. "partType": null,
  282. "page": 0,
  283. "limit": 0,
  284. "amount": null,
  285. "minNum": null,
  286. "maxNum": null,
  287. "modifyUser": null,
  288. "modifyTime": null,
  289. "typeVal": null,
  290. "companyNumber": null,
  291. "warehouseType": null,
  292. "nameOrCode": null
  293. },
  294. {
  295. "id": "11",
  296. "code": "000300010002",
  297. "name": "钣金冲床班组",
  298. "tldId": "37c46fef-772f-4528-bc88-72706daf49a6",
  299. "specificationAndModel": null,
  300. "unitOfMeasurement": null,
  301. "materialId": null,
  302. "num": null,
  303. "type": null,
  304. "tableName": null,
  305. "size": null,
  306. "materialType": null,
  307. "wllbClass": null,
  308. "isNotDisable": null,
  309. "isRecommend": null,
  310. "partType": null,
  311. "page": 0,
  312. "limit": 0,
  313. "amount": null,
  314. "minNum": null,
  315. "maxNum": null,
  316. "modifyUser": null,
  317. "modifyTime": null,
  318. "typeVal": null,
  319. "companyNumber": null,
  320. "warehouseType": null,
  321. "nameOrCode": null
  322. },
  323. {
  324. "id": "12",
  325. "code": "000300010029",
  326. "name": "生产管理部",
  327. "tldId": "37ec6b36-15fb-4459-83c8-7275df2c7d0f",
  328. "specificationAndModel": null,
  329. "unitOfMeasurement": null,
  330. "materialId": null,
  331. "num": null,
  332. "type": null,
  333. "tableName": null,
  334. "size": null,
  335. "materialType": null,
  336. "wllbClass": null,
  337. "isNotDisable": null,
  338. "isRecommend": null,
  339. "partType": null,
  340. "page": 0,
  341. "limit": 0,
  342. "amount": null,
  343. "minNum": null,
  344. "maxNum": null,
  345. "modifyUser": null,
  346. "modifyTime": null,
  347. "typeVal": null,
  348. "companyNumber": null,
  349. "warehouseType": null,
  350. "nameOrCode": null
  351. },
  352. {
  353. "id": "13",
  354. "code": "000300010018",
  355. "name": "交直流班组",
  356. "tldId": "2daa158d-d784-426b-85aa-4e8eb853848a",
  357. "specificationAndModel": null,
  358. "unitOfMeasurement": null,
  359. "materialId": null,
  360. "num": null,
  361. "type": null,
  362. "tableName": null,
  363. "size": null,
  364. "materialType": null,
  365. "wllbClass": null,
  366. "isNotDisable": null,
  367. "isRecommend": null,
  368. "partType": null,
  369. "page": 0,
  370. "limit": 0,
  371. "amount": null,
  372. "minNum": null,
  373. "maxNum": null,
  374. "modifyUser": null,
  375. "modifyTime": null,
  376. "typeVal": null,
  377. "companyNumber": null,
  378. "warehouseType": null,
  379. "nameOrCode": null
  380. },
  381. {
  382. "id": "14",
  383. "code": "00070001",
  384. "name": "数字化驱动中心",
  385. "tldId": "2e4eaca1-9c2e-4275-9767-1fc32bdd1cac",
  386. "specificationAndModel": null,
  387. "unitOfMeasurement": null,
  388. "materialId": null,
  389. "num": null,
  390. "type": null,
  391. "tableName": null,
  392. "size": null,
  393. "materialType": null,
  394. "wllbClass": null,
  395. "isNotDisable": null,
  396. "isRecommend": null,
  397. "partType": null,
  398. "page": 0,
  399. "limit": 0,
  400. "amount": null,
  401. "minNum": null,
  402. "maxNum": null,
  403. "modifyUser": null,
  404. "modifyTime": null,
  405. "typeVal": null,
  406. "companyNumber": null,
  407. "warehouseType": null,
  408. "nameOrCode": null
  409. },
  410. {
  411. "id": "15",
  412. "code": "000300010016",
  413. "name": "钣金折弯班组",
  414. "tldId": "428f29fb-d62a-450f-96fc-281c349256e0",
  415. "specificationAndModel": null,
  416. "unitOfMeasurement": null,
  417. "materialId": null,
  418. "num": null,
  419. "type": null,
  420. "tableName": null,
  421. "size": null,
  422. "materialType": null,
  423. "wllbClass": null,
  424. "isNotDisable": null,
  425. "isRecommend": null,
  426. "partType": null,
  427. "page": 0,
  428. "limit": 0,
  429. "amount": null,
  430. "minNum": null,
  431. "maxNum": null,
  432. "modifyUser": null,
  433. "modifyTime": null,
  434. "typeVal": null,
  435. "companyNumber": null,
  436. "warehouseType": null,
  437. "nameOrCode": null
  438. },
  439. {
  440. "id": "16",
  441. "code": "00080003",
  442. "name": "精益部",
  443. "tldId": "501d8ca6-a07c-4d56-80da-e87cf1355433",
  444. "specificationAndModel": null,
  445. "unitOfMeasurement": null,
  446. "materialId": null,
  447. "num": null,
  448. "type": null,
  449. "tableName": null,
  450. "size": null,
  451. "materialType": null,
  452. "wllbClass": null,
  453. "isNotDisable": null,
  454. "isRecommend": null,
  455. "partType": null,
  456. "page": 0,
  457. "limit": 0,
  458. "amount": null,
  459. "minNum": null,
  460. "maxNum": null,
  461. "modifyUser": null,
  462. "modifyTime": null,
  463. "typeVal": null,
  464. "companyNumber": null,
  465. "warehouseType": null,
  466. "nameOrCode": null
  467. },
  468. {
  469. "id": "17",
  470. "code": "000300010022",
  471. "name": "二次线缆班组",
  472. "tldId": "503f6ada-ee15-4558-825f-de95180af8c4",
  473. "specificationAndModel": null,
  474. "unitOfMeasurement": null,
  475. "materialId": null,
  476. "num": null,
  477. "type": null,
  478. "tableName": null,
  479. "size": null,
  480. "materialType": null,
  481. "wllbClass": null,
  482. "isNotDisable": null,
  483. "isRecommend": null,
  484. "partType": null,
  485. "page": 0,
  486. "limit": 0,
  487. "amount": null,
  488. "minNum": null,
  489. "maxNum": null,
  490. "modifyUser": null,
  491. "modifyTime": null,
  492. "typeVal": null,
  493. "companyNumber": null,
  494. "warehouseType": null,
  495. "nameOrCode": null
  496. },
  497. {
  498. "id": "18",
  499. "code": "00080004",
  500. "name": "金工工艺部",
  501. "tldId": "50f214bf-ac9a-4961-9355-a90979ac70da",
  502. "specificationAndModel": null,
  503. "unitOfMeasurement": null,
  504. "materialId": null,
  505. "num": null,
  506. "type": null,
  507. "tableName": null,
  508. "size": null,
  509. "materialType": null,
  510. "wllbClass": null,
  511. "isNotDisable": null,
  512. "isRecommend": null,
  513. "partType": null,
  514. "page": 0,
  515. "limit": 0,
  516. "amount": null,
  517. "minNum": null,
  518. "maxNum": null,
  519. "modifyUser": null,
  520. "modifyTime": null,
  521. "typeVal": null,
  522. "companyNumber": null,
  523. "warehouseType": null,
  524. "nameOrCode": null
  525. },
  526. {
  527. "id": "19",
  528. "code": "000300010008",
  529. "name": "柜体",
  530. "tldId": "5281e092-7a76-4355-9320-1cdc9ec9498e",
  531. "specificationAndModel": null,
  532. "unitOfMeasurement": null,
  533. "materialId": null,
  534. "num": null,
  535. "type": null,
  536. "tableName": null,
  537. "size": null,
  538. "materialType": null,
  539. "wllbClass": null,
  540. "isNotDisable": null,
  541. "isRecommend": null,
  542. "partType": null,
  543. "page": 0,
  544. "limit": 0,
  545. "amount": null,
  546. "minNum": null,
  547. "maxNum": null,
  548. "modifyUser": null,
  549. "modifyTime": null,
  550. "typeVal": null,
  551. "companyNumber": null,
  552. "warehouseType": null,
  553. "nameOrCode": null
  554. },
  555. {
  556. "id": "20",
  557. "code": "000300030002",
  558. "name": "技术部",
  559. "tldId": "563d85f2-7c62-4b0c-b75e-5a2f85cb4c00",
  560. "specificationAndModel": null,
  561. "unitOfMeasurement": null,
  562. "materialId": null,
  563. "num": null,
  564. "type": null,
  565. "tableName": null,
  566. "size": null,
  567. "materialType": null,
  568. "wllbClass": null,
  569. "isNotDisable": null,
  570. "isRecommend": null,
  571. "partType": null,
  572. "page": 0,
  573. "limit": 0,
  574. "amount": null,
  575. "minNum": null,
  576. "maxNum": null,
  577. "modifyUser": null,
  578. "modifyTime": null,
  579. "typeVal": null,
  580. "companyNumber": null,
  581. "warehouseType": null,
  582. "nameOrCode": null
  583. },
  584. {
  585. "id": "21",
  586. "code": "00090000",
  587. "name": "供应链中心(公共)",
  588. "tldId": "568c10e7-11e6-4078-a467-f0e47a9fabe1",
  589. "specificationAndModel": null,
  590. "unitOfMeasurement": null,
  591. "materialId": null,
  592. "num": null,
  593. "type": null,
  594. "tableName": null,
  595. "size": null,
  596. "materialType": null,
  597. "wllbClass": null,
  598. "isNotDisable": null,
  599. "isRecommend": null,
  600. "partType": null,
  601. "page": 0,
  602. "limit": 0,
  603. "amount": null,
  604. "minNum": null,
  605. "maxNum": null,
  606. "modifyUser": null,
  607. "modifyTime": null,
  608. "typeVal": null,
  609. "companyNumber": null,
  610. "warehouseType": null,
  611. "nameOrCode": null
  612. },
  613. {
  614. "id": "22",
  615. "code": "00040001",
  616. "name": "售后服务部(公共)",
  617. "tldId": "482073eb-0b3a-443d-8478-ad5fa37066c3",
  618. "specificationAndModel": null,
  619. "unitOfMeasurement": null,
  620. "materialId": null,
  621. "num": null,
  622. "type": null,
  623. "tableName": null,
  624. "size": null,
  625. "materialType": null,
  626. "wllbClass": null,
  627. "isNotDisable": null,
  628. "isRecommend": null,
  629. "partType": null,
  630. "page": 0,
  631. "limit": 0,
  632. "amount": null,
  633. "minNum": null,
  634. "maxNum": null,
  635. "modifyUser": null,
  636. "modifyTime": null,
  637. "typeVal": null,
  638. "companyNumber": null,
  639. "warehouseType": null,
  640. "nameOrCode": null
  641. },
  642. {
  643. "id": "23",
  644. "code": "00080002",
  645. "name": "综合工艺部",
  646. "tldId": "582786f8-bf88-49d9-aa2f-6046ac56ee02",
  647. "specificationAndModel": null,
  648. "unitOfMeasurement": null,
  649. "materialId": null,
  650. "num": null,
  651. "type": null,
  652. "tableName": null,
  653. "size": null,
  654. "materialType": null,
  655. "wllbClass": null,
  656. "isNotDisable": null,
  657. "isRecommend": null,
  658. "partType": null,
  659. "page": 0,
  660. "limit": 0,
  661. "amount": null,
  662. "minNum": null,
  663. "maxNum": null,
  664. "modifyUser": null,
  665. "modifyTime": null,
  666. "typeVal": null,
  667. "companyNumber": null,
  668. "warehouseType": null,
  669. "nameOrCode": null
  670. },
  671. {
  672. "id": "24",
  673. "code": "1100Z10008",
  674. "name": "金工车间",
  675. "tldId": "59dfd3d7-f1c9-4edb-8d3b-abbd3702deef",
  676. "specificationAndModel": null,
  677. "unitOfMeasurement": null,
  678. "materialId": null,
  679. "num": null,
  680. "type": null,
  681. "tableName": null,
  682. "size": null,
  683. "materialType": null,
  684. "wllbClass": null,
  685. "isNotDisable": null,
  686. "isRecommend": null,
  687. "partType": null,
  688. "page": 0,
  689. "limit": 0,
  690. "amount": null,
  691. "minNum": null,
  692. "maxNum": null,
  693. "modifyUser": null,
  694. "modifyTime": null,
  695. "typeVal": null,
  696. "companyNumber": null,
  697. "warehouseType": null,
  698. "nameOrCode": null
  699. },
  700. {
  701. "id": "25",
  702. "code": "000300010019",
  703. "name": "轮充充电机班组",
  704. "tldId": "5e96df93-3299-48aa-817a-fee32a18f3c4",
  705. "specificationAndModel": null,
  706. "unitOfMeasurement": null,
  707. "materialId": null,
  708. "num": null,
  709. "type": null,
  710. "tableName": null,
  711. "size": null,
  712. "materialType": null,
  713. "wllbClass": null,
  714. "isNotDisable": null,
  715. "isRecommend": null,
  716. "partType": null,
  717. "page": 0,
  718. "limit": 0,
  719. "amount": null,
  720. "minNum": null,
  721. "maxNum": null,
  722. "modifyUser": null,
  723. "modifyTime": null,
  724. "typeVal": null,
  725. "companyNumber": null,
  726. "warehouseType": null,
  727. "nameOrCode": null
  728. },
  729. {
  730. "id": "26",
  731. "code": "1100Z10010",
  732. "name": "总控箱产线",
  733. "tldId": "5efc6ebf-f48d-4982-9479-78df75ef24ab",
  734. "specificationAndModel": null,
  735. "unitOfMeasurement": null,
  736. "materialId": null,
  737. "num": null,
  738. "type": null,
  739. "tableName": null,
  740. "size": null,
  741. "materialType": null,
  742. "wllbClass": null,
  743. "isNotDisable": null,
  744. "isRecommend": null,
  745. "partType": null,
  746. "page": 0,
  747. "limit": 0,
  748. "amount": null,
  749. "minNum": null,
  750. "maxNum": null,
  751. "modifyUser": null,
  752. "modifyTime": null,
  753. "typeVal": null,
  754. "companyNumber": null,
  755. "warehouseType": null,
  756. "nameOrCode": null
  757. },
  758. {
  759. "id": "27",
  760. "code": "00080001",
  761. "name": "群充工艺部",
  762. "tldId": "6522ee3e-1122-48bd-9086-738c30b5e3b1",
  763. "specificationAndModel": null,
  764. "unitOfMeasurement": null,
  765. "materialId": null,
  766. "num": null,
  767. "type": null,
  768. "tableName": null,
  769. "size": null,
  770. "materialType": null,
  771. "wllbClass": null,
  772. "isNotDisable": null,
  773. "isRecommend": null,
  774. "partType": null,
  775. "page": 0,
  776. "limit": 0,
  777. "amount": null,
  778. "minNum": null,
  779. "maxNum": null,
  780. "modifyUser": null,
  781. "modifyTime": null,
  782. "typeVal": null,
  783. "companyNumber": null,
  784. "warehouseType": null,
  785. "nameOrCode": null
  786. },
  787. {
  788. "id": "28",
  789. "code": "00050001",
  790. "name": "综合办公室(公共)",
  791. "tldId": "78cd1bc6-dce5-48d7-80d5-9eae0cd1f04d",
  792. "specificationAndModel": null,
  793. "unitOfMeasurement": null,
  794. "materialId": null,
  795. "num": null,
  796. "type": null,
  797. "tableName": null,
  798. "size": null,
  799. "materialType": null,
  800. "wllbClass": null,
  801. "isNotDisable": null,
  802. "isRecommend": null,
  803. "partType": null,
  804. "page": 0,
  805. "limit": 0,
  806. "amount": null,
  807. "minNum": null,
  808. "maxNum": null,
  809. "modifyUser": null,
  810. "modifyTime": null,
  811. "typeVal": null,
  812. "companyNumber": null,
  813. "warehouseType": null,
  814. "nameOrCode": null
  815. },
  816. {
  817. "id": "29",
  818. "code": "000300010010",
  819. "name": "喷塑班组",
  820. "tldId": "7b7a9c57-df8a-4e48-89c1-675acebb167d",
  821. "specificationAndModel": null,
  822. "unitOfMeasurement": null,
  823. "materialId": null,
  824. "num": null,
  825. "type": null,
  826. "tableName": null,
  827. "size": null,
  828. "materialType": null,
  829. "wllbClass": null,
  830. "isNotDisable": null,
  831. "isRecommend": null,
  832. "partType": null,
  833. "page": 0,
  834. "limit": 0,
  835. "amount": null,
  836. "minNum": null,
  837. "maxNum": null,
  838. "modifyUser": null,
  839. "modifyTime": null,
  840. "typeVal": null,
  841. "companyNumber": null,
  842. "warehouseType": null,
  843. "nameOrCode": null
  844. },
  845. {
  846. "id": "30",
  847. "code": "000300010001",
  848. "name": "安全管理",
  849. "tldId": "7ecd29ae-2b20-424b-aeb6-55d3925065ac",
  850. "specificationAndModel": null,
  851. "unitOfMeasurement": null,
  852. "materialId": null,
  853. "num": null,
  854. "type": null,
  855. "tableName": null,
  856. "size": null,
  857. "materialType": null,
  858. "wllbClass": null,
  859. "isNotDisable": null,
  860. "isRecommend": null,
  861. "partType": null,
  862. "page": 0,
  863. "limit": 0,
  864. "amount": null,
  865. "minNum": null,
  866. "maxNum": null,
  867. "modifyUser": null,
  868. "modifyTime": null,
  869. "typeVal": null,
  870. "companyNumber": null,
  871. "warehouseType": null,
  872. "nameOrCode": null
  873. },
  874. {
  875. "id": "31",
  876. "code": "00020001",
  877. "name": "资源管理部",
  878. "tldId": "7f2a7984-7a45-4fad-8fa3-3394587b2628",
  879. "specificationAndModel": null,
  880. "unitOfMeasurement": null,
  881. "materialId": null,
  882. "num": null,
  883. "type": null,
  884. "tableName": null,
  885. "size": null,
  886. "materialType": null,
  887. "wllbClass": null,
  888. "isNotDisable": null,
  889. "isRecommend": null,
  890. "partType": null,
  891. "page": 0,
  892. "limit": 0,
  893. "amount": null,
  894. "minNum": null,
  895. "maxNum": null,
  896. "modifyUser": null,
  897. "modifyTime": null,
  898. "typeVal": null,
  899. "companyNumber": null,
  900. "warehouseType": null,
  901. "nameOrCode": null
  902. },
  903. {
  904. "id": "32",
  905. "code": "00020002",
  906. "name": "资源采购部",
  907. "tldId": "816e5c5f-7207-46aa-a1c9-368e00abb9cb",
  908. "specificationAndModel": null,
  909. "unitOfMeasurement": null,
  910. "materialId": null,
  911. "num": null,
  912. "type": null,
  913. "tableName": null,
  914. "size": null,
  915. "materialType": null,
  916. "wllbClass": null,
  917. "isNotDisable": null,
  918. "isRecommend": null,
  919. "partType": null,
  920. "page": 0,
  921. "limit": 0,
  922. "amount": null,
  923. "minNum": null,
  924. "maxNum": null,
  925. "modifyUser": null,
  926. "modifyTime": null,
  927. "typeVal": null,
  928. "companyNumber": null,
  929. "warehouseType": null,
  930. "nameOrCode": null
  931. },
  932. {
  933. "id": "33",
  934. "code": "000300010003",
  935. "name": "车间管理",
  936. "tldId": "8320f770-dd80-49c7-bfab-eb233436bb5a",
  937. "specificationAndModel": null,
  938. "unitOfMeasurement": null,
  939. "materialId": null,
  940. "num": null,
  941. "type": null,
  942. "tableName": null,
  943. "size": null,
  944. "materialType": null,
  945. "wllbClass": null,
  946. "isNotDisable": null,
  947. "isRecommend": null,
  948. "partType": null,
  949. "page": 0,
  950. "limit": 0,
  951. "amount": null,
  952. "minNum": null,
  953. "maxNum": null,
  954. "modifyUser": null,
  955. "modifyTime": null,
  956. "typeVal": null,
  957. "companyNumber": null,
  958. "warehouseType": null,
  959. "nameOrCode": null
  960. },
  961. {
  962. "id": "34",
  963. "code": "000300020001",
  964. "name": "仓库管理部",
  965. "tldId": "6d73dcc4-670a-4841-89e6-908dfafbae92",
  966. "specificationAndModel": null,
  967. "unitOfMeasurement": null,
  968. "materialId": null,
  969. "num": null,
  970. "type": null,
  971. "tableName": null,
  972. "size": null,
  973. "materialType": null,
  974. "wllbClass": null,
  975. "isNotDisable": null,
  976. "isRecommend": null,
  977. "partType": null,
  978. "page": 0,
  979. "limit": 0,
  980. "amount": null,
  981. "minNum": null,
  982. "maxNum": null,
  983. "modifyUser": null,
  984. "modifyTime": null,
  985. "typeVal": null,
  986. "companyNumber": null,
  987. "warehouseType": null,
  988. "nameOrCode": null
  989. },
  990. {
  991. "id": "35",
  992. "code": "000300010021",
  993. "name": "一次线缆班组",
  994. "tldId": "8aa23777-16e9-444c-81ae-9fc8cff7581d",
  995. "specificationAndModel": null,
  996. "unitOfMeasurement": null,
  997. "materialId": null,
  998. "num": null,
  999. "type": null,
  1000. "tableName": null,
  1001. "size": null,
  1002. "materialType": null,
  1003. "wllbClass": null,
  1004. "isNotDisable": null,
  1005. "isRecommend": null,
  1006. "partType": null,
  1007. "page": 0,
  1008. "limit": 0,
  1009. "amount": null,
  1010. "minNum": null,
  1011. "maxNum": null,
  1012. "modifyUser": null,
  1013. "modifyTime": null,
  1014. "typeVal": null,
  1015. "companyNumber": null,
  1016. "warehouseType": null,
  1017. "nameOrCode": null
  1018. },
  1019. {
  1020. "id": "36",
  1021. "code": "000300010013",
  1022. "name": "物流配送班组",
  1023. "tldId": "95ffe8c0-8e2b-4d88-af48-2a7cd2236588",
  1024. "specificationAndModel": null,
  1025. "unitOfMeasurement": null,
  1026. "materialId": null,
  1027. "num": null,
  1028. "type": null,
  1029. "tableName": null,
  1030. "size": null,
  1031. "materialType": null,
  1032. "wllbClass": null,
  1033. "isNotDisable": null,
  1034. "isRecommend": null,
  1035. "partType": null,
  1036. "page": 0,
  1037. "limit": 0,
  1038. "amount": null,
  1039. "minNum": null,
  1040. "maxNum": null,
  1041. "modifyUser": null,
  1042. "modifyTime": null,
  1043. "typeVal": null,
  1044. "companyNumber": null,
  1045. "warehouseType": null,
  1046. "nameOrCode": null
  1047. },
  1048. {
  1049. "id": "37",
  1050. "code": "00020004",
  1051. "name": "订单执行部",
  1052. "tldId": "982b3aed-e5a8-481a-af5d-a491c6acb2b1",
  1053. "specificationAndModel": null,
  1054. "unitOfMeasurement": null,
  1055. "materialId": null,
  1056. "num": null,
  1057. "type": null,
  1058. "tableName": null,
  1059. "size": null,
  1060. "materialType": null,
  1061. "wllbClass": null,
  1062. "isNotDisable": null,
  1063. "isRecommend": null,
  1064. "partType": null,
  1065. "page": 0,
  1066. "limit": 0,
  1067. "amount": null,
  1068. "minNum": null,
  1069. "maxNum": null,
  1070. "modifyUser": null,
  1071. "modifyTime": null,
  1072. "typeVal": null,
  1073. "companyNumber": null,
  1074. "warehouseType": null,
  1075. "nameOrCode": null
  1076. },
  1077. {
  1078. "id": "38",
  1079. "code": "00080000",
  1080. "name": "工业工程中心(公共)",
  1081. "tldId": "a7601f4d-4453-46bf-9d66-4535329e2b69",
  1082. "specificationAndModel": null,
  1083. "unitOfMeasurement": null,
  1084. "materialId": null,
  1085. "num": null,
  1086. "type": null,
  1087. "tableName": null,
  1088. "size": null,
  1089. "materialType": null,
  1090. "wllbClass": null,
  1091. "isNotDisable": null,
  1092. "isRecommend": null,
  1093. "partType": null,
  1094. "page": 0,
  1095. "limit": 0,
  1096. "amount": null,
  1097. "minNum": null,
  1098. "maxNum": null,
  1099. "modifyUser": null,
  1100. "modifyTime": null,
  1101. "typeVal": null,
  1102. "companyNumber": null,
  1103. "warehouseType": null,
  1104. "nameOrCode": null
  1105. },
  1106. {
  1107. "id": "39",
  1108. "code": "00100000",
  1109. "name": "IT基础服务中心(公共)",
  1110. "tldId": "bbeecb1a-e488-4eed-8540-a495d217a8a4",
  1111. "specificationAndModel": null,
  1112. "unitOfMeasurement": null,
  1113. "materialId": null,
  1114. "num": null,
  1115. "type": null,
  1116. "tableName": null,
  1117. "size": null,
  1118. "materialType": null,
  1119. "wllbClass": null,
  1120. "isNotDisable": null,
  1121. "isRecommend": null,
  1122. "partType": null,
  1123. "page": 0,
  1124. "limit": 0,
  1125. "amount": null,
  1126. "minNum": null,
  1127. "maxNum": null,
  1128. "modifyUser": null,
  1129. "modifyTime": null,
  1130. "typeVal": null,
  1131. "companyNumber": null,
  1132. "warehouseType": null,
  1133. "nameOrCode": null
  1134. },
  1135. {
  1136. "id": "40",
  1137. "code": "00020003",
  1138. "name": "供应商管理部",
  1139. "tldId": "bd42efbe-4632-4075-9e49-06d9fdf40919",
  1140. "specificationAndModel": null,
  1141. "unitOfMeasurement": null,
  1142. "materialId": null,
  1143. "num": null,
  1144. "type": null,
  1145. "tableName": null,
  1146. "size": null,
  1147. "materialType": null,
  1148. "wllbClass": null,
  1149. "isNotDisable": null,
  1150. "isRecommend": null,
  1151. "partType": null,
  1152. "page": 0,
  1153. "limit": 0,
  1154. "amount": null,
  1155. "minNum": null,
  1156. "maxNum": null,
  1157. "modifyUser": null,
  1158. "modifyTime": null,
  1159. "typeVal": null,
  1160. "companyNumber": null,
  1161. "warehouseType": null,
  1162. "nameOrCode": null
  1163. },
  1164. {
  1165. "id": "41",
  1166. "code": "000300010007",
  1167. "name": "高低压班组",
  1168. "tldId": "c23ff53c-45df-4b38-85b6-a88a54881622",
  1169. "specificationAndModel": null,
  1170. "unitOfMeasurement": null,
  1171. "materialId": null,
  1172. "num": null,
  1173. "type": null,
  1174. "tableName": null,
  1175. "size": null,
  1176. "materialType": null,
  1177. "wllbClass": null,
  1178. "isNotDisable": null,
  1179. "isRecommend": null,
  1180. "partType": null,
  1181. "page": 0,
  1182. "limit": 0,
  1183. "amount": null,
  1184. "minNum": null,
  1185. "maxNum": null,
  1186. "modifyUser": null,
  1187. "modifyTime": null,
  1188. "typeVal": null,
  1189. "companyNumber": null,
  1190. "warehouseType": null,
  1191. "nameOrCode": null
  1192. },
  1193. {
  1194. "id": "42",
  1195. "code": "00060001",
  1196. "name": "人事关系部",
  1197. "tldId": "c52ec948-08c3-4371-a459-1b6c03ad1b9f",
  1198. "specificationAndModel": null,
  1199. "unitOfMeasurement": null,
  1200. "materialId": null,
  1201. "num": null,
  1202. "type": null,
  1203. "tableName": null,
  1204. "size": null,
  1205. "materialType": null,
  1206. "wllbClass": null,
  1207. "isNotDisable": null,
  1208. "isRecommend": null,
  1209. "partType": null,
  1210. "page": 0,
  1211. "limit": 0,
  1212. "amount": null,
  1213. "minNum": null,
  1214. "maxNum": null,
  1215. "modifyUser": null,
  1216. "modifyTime": null,
  1217. "typeVal": null,
  1218. "companyNumber": null,
  1219. "warehouseType": null,
  1220. "nameOrCode": null
  1221. },
  1222. {
  1223. "id": "43",
  1224. "code": "000300010005",
  1225. "name": "发货班组",
  1226. "tldId": "ae273904-af72-404d-b93e-767cf0db7a91",
  1227. "specificationAndModel": null,
  1228. "unitOfMeasurement": null,
  1229. "materialId": null,
  1230. "num": null,
  1231. "type": null,
  1232. "tableName": null,
  1233. "size": null,
  1234. "materialType": null,
  1235. "wllbClass": null,
  1236. "isNotDisable": null,
  1237. "isRecommend": null,
  1238. "partType": null,
  1239. "page": 0,
  1240. "limit": 0,
  1241. "amount": null,
  1242. "minNum": null,
  1243. "maxNum": null,
  1244. "modifyUser": null,
  1245. "modifyTime": null,
  1246. "typeVal": null,
  1247. "companyNumber": null,
  1248. "warehouseType": null,
  1249. "nameOrCode": null
  1250. },
  1251. {
  1252. "id": "44",
  1253. "code": "000300010004",
  1254. "name": "单桩终端",
  1255. "tldId": "cb037bec-e55e-466f-9c73-8230bec553bf",
  1256. "specificationAndModel": null,
  1257. "unitOfMeasurement": null,
  1258. "materialId": null,
  1259. "num": null,
  1260. "type": null,
  1261. "tableName": null,
  1262. "size": null,
  1263. "materialType": null,
  1264. "wllbClass": null,
  1265. "isNotDisable": null,
  1266. "isRecommend": null,
  1267. "partType": null,
  1268. "page": 0,
  1269. "limit": 0,
  1270. "amount": null,
  1271. "minNum": null,
  1272. "maxNum": null,
  1273. "modifyUser": null,
  1274. "modifyTime": null,
  1275. "typeVal": null,
  1276. "companyNumber": null,
  1277. "warehouseType": null,
  1278. "nameOrCode": null
  1279. },
  1280. {
  1281. "id": "45",
  1282. "code": "000300010023",
  1283. "name": "物料配送部",
  1284. "tldId": "cca56b21-bbc2-4c0c-b3ac-180c1fe65633",
  1285. "specificationAndModel": null,
  1286. "unitOfMeasurement": null,
  1287. "materialId": null,
  1288. "num": null,
  1289. "type": null,
  1290. "tableName": null,
  1291. "size": null,
  1292. "materialType": null,
  1293. "wllbClass": null,
  1294. "isNotDisable": null,
  1295. "isRecommend": null,
  1296. "partType": null,
  1297. "page": 0,
  1298. "limit": 0,
  1299. "amount": null,
  1300. "minNum": null,
  1301. "maxNum": null,
  1302. "modifyUser": null,
  1303. "modifyTime": null,
  1304. "typeVal": null,
  1305. "companyNumber": null,
  1306. "warehouseType": null,
  1307. "nameOrCode": null
  1308. },
  1309. {
  1310. "id": "46",
  1311. "code": "00019999",
  1312. "name": "质量管理中心(公共)",
  1313. "tldId": "cfae97b5-3ddc-40f1-a705-b386ce45a668",
  1314. "specificationAndModel": null,
  1315. "unitOfMeasurement": null,
  1316. "materialId": null,
  1317. "num": null,
  1318. "type": null,
  1319. "tableName": null,
  1320. "size": null,
  1321. "materialType": null,
  1322. "wllbClass": null,
  1323. "isNotDisable": null,
  1324. "isRecommend": null,
  1325. "partType": null,
  1326. "page": 0,
  1327. "limit": 0,
  1328. "amount": null,
  1329. "minNum": null,
  1330. "maxNum": null,
  1331. "modifyUser": null,
  1332. "modifyTime": null,
  1333. "typeVal": null,
  1334. "companyNumber": null,
  1335. "warehouseType": null,
  1336. "nameOrCode": null
  1337. },
  1338. {
  1339. "id": "47",
  1340. "code": "00039999",
  1341. "name": "充电设备事业部(公共)",
  1342. "tldId": "d73da88d-920e-4814-aa68-2f45beea47cb",
  1343. "specificationAndModel": null,
  1344. "unitOfMeasurement": null,
  1345. "materialId": null,
  1346. "num": null,
  1347. "type": null,
  1348. "tableName": null,
  1349. "size": null,
  1350. "materialType": null,
  1351. "wllbClass": null,
  1352. "isNotDisable": null,
  1353. "isRecommend": null,
  1354. "partType": null,
  1355. "page": 0,
  1356. "limit": 0,
  1357. "amount": null,
  1358. "minNum": null,
  1359. "maxNum": null,
  1360. "modifyUser": null,
  1361. "modifyTime": null,
  1362. "typeVal": null,
  1363. "companyNumber": null,
  1364. "warehouseType": null,
  1365. "nameOrCode": null
  1366. },
  1367. {
  1368. "id": "48",
  1369. "code": "000300010017",
  1370. "name": "临时班组",
  1371. "tldId": "da3b57d5-52fd-4859-8a8c-2233d88e5006",
  1372. "specificationAndModel": null,
  1373. "unitOfMeasurement": null,
  1374. "materialId": null,
  1375. "num": null,
  1376. "type": null,
  1377. "tableName": null,
  1378. "size": null,
  1379. "materialType": null,
  1380. "wllbClass": null,
  1381. "isNotDisable": null,
  1382. "isRecommend": null,
  1383. "partType": null,
  1384. "page": 0,
  1385. "limit": 0,
  1386. "amount": null,
  1387. "minNum": null,
  1388. "maxNum": null,
  1389. "modifyUser": null,
  1390. "modifyTime": null,
  1391. "typeVal": null,
  1392. "companyNumber": null,
  1393. "warehouseType": null,
  1394. "nameOrCode": null
  1395. },
  1396. {
  1397. "id": "49",
  1398. "code": "000300010028",
  1399. "name": "箱体组装班组",
  1400. "tldId": "dd14ad3c-3dc1-45f5-8bf2-840bec24d003",
  1401. "specificationAndModel": null,
  1402. "unitOfMeasurement": null,
  1403. "materialId": null,
  1404. "num": null,
  1405. "type": null,
  1406. "tableName": null,
  1407. "size": null,
  1408. "materialType": null,
  1409. "wllbClass": null,
  1410. "isNotDisable": null,
  1411. "isRecommend": null,
  1412. "partType": null,
  1413. "page": 0,
  1414. "limit": 0,
  1415. "amount": null,
  1416. "minNum": null,
  1417. "maxNum": null,
  1418. "modifyUser": null,
  1419. "modifyTime": null,
  1420. "typeVal": null,
  1421. "companyNumber": null,
  1422. "warehouseType": null,
  1423. "nameOrCode": null
  1424. },
  1425. {
  1426. "id": "50",
  1427. "code": "1100Z10011",
  1428. "name": "单桩产线",
  1429. "tldId": "e556fbd7-3c87-4fe8-b3ce-b641ec23aa50",
  1430. "specificationAndModel": null,
  1431. "unitOfMeasurement": null,
  1432. "materialId": null,
  1433. "num": null,
  1434. "type": null,
  1435. "tableName": null,
  1436. "size": null,
  1437. "materialType": null,
  1438. "wllbClass": null,
  1439. "isNotDisable": null,
  1440. "isRecommend": null,
  1441. "partType": null,
  1442. "page": 0,
  1443. "limit": 0,
  1444. "amount": null,
  1445. "minNum": null,
  1446. "maxNum": null,
  1447. "modifyUser": null,
  1448. "modifyTime": null,
  1449. "typeVal": null,
  1450. "companyNumber": null,
  1451. "warehouseType": null,
  1452. "nameOrCode": null
  1453. },
  1454. {
  1455. "id": "51",
  1456. "code": "1100Z10009",
  1457. "name": "充电箱变产线",
  1458. "tldId": "ec8ed72d-87c2-4443-9116-52bd786d1172",
  1459. "specificationAndModel": null,
  1460. "unitOfMeasurement": null,
  1461. "materialId": null,
  1462. "num": null,
  1463. "type": null,
  1464. "tableName": null,
  1465. "size": null,
  1466. "materialType": null,
  1467. "wllbClass": null,
  1468. "isNotDisable": null,
  1469. "isRecommend": null,
  1470. "partType": null,
  1471. "page": 0,
  1472. "limit": 0,
  1473. "amount": null,
  1474. "minNum": null,
  1475. "maxNum": null,
  1476. "modifyUser": null,
  1477. "modifyTime": null,
  1478. "typeVal": null,
  1479. "companyNumber": null,
  1480. "warehouseType": null,
  1481. "nameOrCode": null
  1482. },
  1483. {
  1484. "id": "52",
  1485. "code": "000300010006",
  1486. "name": "辅助班组",
  1487. "tldId": "ed1e1420-f4f3-48a4-9a40-b3e8da565002",
  1488. "specificationAndModel": null,
  1489. "unitOfMeasurement": null,
  1490. "materialId": null,
  1491. "num": null,
  1492. "type": null,
  1493. "tableName": null,
  1494. "size": null,
  1495. "materialType": null,
  1496. "wllbClass": null,
  1497. "isNotDisable": null,
  1498. "isRecommend": null,
  1499. "partType": null,
  1500. "page": 0,
  1501. "limit": 0,
  1502. "amount": null,
  1503. "minNum": null,
  1504. "maxNum": null,
  1505. "modifyUser": null,
  1506. "modifyTime": null,
  1507. "typeVal": null,
  1508. "companyNumber": null,
  1509. "warehouseType": null,
  1510. "nameOrCode": null
  1511. },
  1512. {
  1513. "id": "53",
  1514. "code": "0099",
  1515. "name": "财务部",
  1516. "tldId": "ed66dd6c-30e3-4126-b27d-15d84d48cbe9",
  1517. "specificationAndModel": null,
  1518. "unitOfMeasurement": null,
  1519. "materialId": null,
  1520. "num": null,
  1521. "type": null,
  1522. "tableName": null,
  1523. "size": null,
  1524. "materialType": null,
  1525. "wllbClass": null,
  1526. "isNotDisable": null,
  1527. "isRecommend": null,
  1528. "partType": null,
  1529. "page": 0,
  1530. "limit": 0,
  1531. "amount": null,
  1532. "minNum": null,
  1533. "maxNum": null,
  1534. "modifyUser": null,
  1535. "modifyTime": null,
  1536. "typeVal": null,
  1537. "companyNumber": null,
  1538. "warehouseType": null,
  1539. "nameOrCode": null
  1540. },
  1541. {
  1542. "id": "54",
  1543. "code": "000300010025",
  1544. "name": "轮充终端班组",
  1545. "tldId": "ee24d8fe-af23-489e-b92e-866a96744a9a",
  1546. "specificationAndModel": null,
  1547. "unitOfMeasurement": null,
  1548. "materialId": null,
  1549. "num": null,
  1550. "type": null,
  1551. "tableName": null,
  1552. "size": null,
  1553. "materialType": null,
  1554. "wllbClass": null,
  1555. "isNotDisable": null,
  1556. "isRecommend": null,
  1557. "partType": null,
  1558. "page": 0,
  1559. "limit": 0,
  1560. "amount": null,
  1561. "minNum": null,
  1562. "maxNum": null,
  1563. "modifyUser": null,
  1564. "modifyTime": null,
  1565. "typeVal": null,
  1566. "companyNumber": null,
  1567. "warehouseType": null,
  1568. "nameOrCode": null
  1569. },
  1570. {
  1571. "id": "55",
  1572. "code": "000300010011",
  1573. "name": "铜排班组",
  1574. "tldId": "f056c2f7-6056-471f-af2c-6b08d122ad6a",
  1575. "specificationAndModel": null,
  1576. "unitOfMeasurement": null,
  1577. "materialId": null,
  1578. "num": null,
  1579. "type": null,
  1580. "tableName": null,
  1581. "size": null,
  1582. "materialType": null,
  1583. "wllbClass": null,
  1584. "isNotDisable": null,
  1585. "isRecommend": null,
  1586. "partType": null,
  1587. "page": 0,
  1588. "limit": 0,
  1589. "amount": null,
  1590. "minNum": null,
  1591. "maxNum": null,
  1592. "modifyUser": null,
  1593. "modifyTime": null,
  1594. "typeVal": null,
  1595. "companyNumber": null,
  1596. "warehouseType": null,
  1597. "nameOrCode": null
  1598. },
  1599. {
  1600. "id": "56",
  1601. "code": "000300010015",
  1602. "name": "总控箱班组",
  1603. "tldId": "f3b31af8-1c21-4c39-a5b4-430bd7ba7f5c",
  1604. "specificationAndModel": null,
  1605. "unitOfMeasurement": null,
  1606. "materialId": null,
  1607. "num": null,
  1608. "type": null,
  1609. "tableName": null,
  1610. "size": null,
  1611. "materialType": null,
  1612. "wllbClass": null,
  1613. "isNotDisable": null,
  1614. "isRecommend": null,
  1615. "partType": null,
  1616. "page": 0,
  1617. "limit": 0,
  1618. "amount": null,
  1619. "minNum": null,
  1620. "maxNum": null,
  1621. "modifyUser": null,
  1622. "modifyTime": null,
  1623. "typeVal": null,
  1624. "companyNumber": null,
  1625. "warehouseType": null,
  1626. "nameOrCode": null
  1627. },
  1628. {
  1629. "id": "57",
  1630. "code": "000300010012",
  1631. "name": "涂装班组",
  1632. "tldId": "f4fe80c4-0f13-43ce-bec5-25defebf3d13",
  1633. "specificationAndModel": null,
  1634. "unitOfMeasurement": null,
  1635. "materialId": null,
  1636. "num": null,
  1637. "type": null,
  1638. "tableName": null,
  1639. "size": null,
  1640. "materialType": null,
  1641. "wllbClass": null,
  1642. "isNotDisable": null,
  1643. "isRecommend": null,
  1644. "partType": null,
  1645. "page": 0,
  1646. "limit": 0,
  1647. "amount": null,
  1648. "minNum": null,
  1649. "maxNum": null,
  1650. "modifyUser": null,
  1651. "modifyTime": null,
  1652. "typeVal": null,
  1653. "companyNumber": null,
  1654. "warehouseType": null,
  1655. "nameOrCode": null
  1656. },
  1657. {
  1658. "id": "58",
  1659. "code": "00050002",
  1660. "name": "特种兵",
  1661. "tldId": "f611ac46-bd4b-47e6-b99c-43f58bcc5e6a",
  1662. "specificationAndModel": null,
  1663. "unitOfMeasurement": null,
  1664. "materialId": null,
  1665. "num": null,
  1666. "type": null,
  1667. "tableName": null,
  1668. "size": null,
  1669. "materialType": null,
  1670. "wllbClass": null,
  1671. "isNotDisable": null,
  1672. "isRecommend": null,
  1673. "partType": null,
  1674. "page": 0,
  1675. "limit": 0,
  1676. "amount": null,
  1677. "minNum": null,
  1678. "maxNum": null,
  1679. "modifyUser": null,
  1680. "modifyTime": null,
  1681. "typeVal": null,
  1682. "companyNumber": null,
  1683. "warehouseType": null,
  1684. "nameOrCode": null
  1685. },
  1686. {
  1687. "id": "59",
  1688. "code": "00010002",
  1689. "name": "质量保证部",
  1690. "tldId": "f6de3d75-683e-4fe1-bcf2-9856a6f886b4",
  1691. "specificationAndModel": null,
  1692. "unitOfMeasurement": null,
  1693. "materialId": null,
  1694. "num": null,
  1695. "type": null,
  1696. "tableName": null,
  1697. "size": null,
  1698. "materialType": null,
  1699. "wllbClass": null,
  1700. "isNotDisable": null,
  1701. "isRecommend": null,
  1702. "partType": null,
  1703. "page": 0,
  1704. "limit": 0,
  1705. "amount": null,
  1706. "minNum": null,
  1707. "maxNum": null,
  1708. "modifyUser": null,
  1709. "modifyTime": null,
  1710. "typeVal": null,
  1711. "companyNumber": null,
  1712. "warehouseType": null,
  1713. "nameOrCode": null
  1714. },
  1715. {
  1716. "id": "60",
  1717. "code": "00130001",
  1718. "name": "行政支持部",
  1719. "tldId": "fd6e2993-4213-4376-996a-cab54472b7b0",
  1720. "specificationAndModel": null,
  1721. "unitOfMeasurement": null,
  1722. "materialId": null,
  1723. "num": null,
  1724. "type": null,
  1725. "tableName": null,
  1726. "size": null,
  1727. "materialType": null,
  1728. "wllbClass": null,
  1729. "isNotDisable": null,
  1730. "isRecommend": null,
  1731. "partType": null,
  1732. "page": 0,
  1733. "limit": 0,
  1734. "amount": null,
  1735. "minNum": null,
  1736. "maxNum": null,
  1737. "modifyUser": null,
  1738. "modifyTime": null,
  1739. "typeVal": null,
  1740. "companyNumber": null,
  1741. "warehouseType": null,
  1742. "nameOrCode": null
  1743. },
  1744. {
  1745. "id": "61",
  1746. "code": "00030011",
  1747. "name": "柜体组装班组",
  1748. "tldId": "ed5b1363-02cf-4063-8e0a-07802264c859",
  1749. "specificationAndModel": null,
  1750. "unitOfMeasurement": null,
  1751. "materialId": null,
  1752. "num": null,
  1753. "type": null,
  1754. "tableName": null,
  1755. "size": null,
  1756. "materialType": null,
  1757. "wllbClass": null,
  1758. "isNotDisable": null,
  1759. "isRecommend": null,
  1760. "partType": null,
  1761. "page": 0,
  1762. "limit": 0,
  1763. "amount": null,
  1764. "minNum": null,
  1765. "maxNum": null,
  1766. "modifyUser": null,
  1767. "modifyTime": null,
  1768. "typeVal": null,
  1769. "companyNumber": null,
  1770. "warehouseType": null,
  1771. "nameOrCode": null
  1772. },
  1773. {
  1774. "id": "62",
  1775. "code": "00060001",
  1776. "name": "综合工艺部",
  1777. "tldId": "d0051198-392d-428d-8eea-088d346192e2",
  1778. "specificationAndModel": null,
  1779. "unitOfMeasurement": null,
  1780. "materialId": null,
  1781. "num": null,
  1782. "type": null,
  1783. "tableName": null,
  1784. "size": null,
  1785. "materialType": null,
  1786. "wllbClass": null,
  1787. "isNotDisable": null,
  1788. "isRecommend": null,
  1789. "partType": null,
  1790. "page": 0,
  1791. "limit": 0,
  1792. "amount": null,
  1793. "minNum": null,
  1794. "maxNum": null,
  1795. "modifyUser": null,
  1796. "modifyTime": null,
  1797. "typeVal": null,
  1798. "companyNumber": null,
  1799. "warehouseType": null,
  1800. "nameOrCode": null
  1801. },
  1802. {
  1803. "id": "63",
  1804. "code": "00030007",
  1805. "name": "焊接班组",
  1806. "tldId": "d2ec7b0e-2a58-4fd5-a1e4-25d9bd40ad59",
  1807. "specificationAndModel": null,
  1808. "unitOfMeasurement": null,
  1809. "materialId": null,
  1810. "num": null,
  1811. "type": null,
  1812. "tableName": null,
  1813. "size": null,
  1814. "materialType": null,
  1815. "wllbClass": null,
  1816. "isNotDisable": null,
  1817. "isRecommend": null,
  1818. "partType": null,
  1819. "page": 0,
  1820. "limit": 0,
  1821. "amount": null,
  1822. "minNum": null,
  1823. "maxNum": null,
  1824. "modifyUser": null,
  1825. "modifyTime": null,
  1826. "typeVal": null,
  1827. "companyNumber": null,
  1828. "warehouseType": null,
  1829. "nameOrCode": null
  1830. },
  1831. {
  1832. "id": "64",
  1833. "code": "00070001",
  1834. "name": "行政支持部",
  1835. "tldId": "cc9ad321-e0a8-46ed-a3b2-5aadcfebe5ff",
  1836. "specificationAndModel": null,
  1837. "unitOfMeasurement": null,
  1838. "materialId": null,
  1839. "num": null,
  1840. "type": null,
  1841. "tableName": null,
  1842. "size": null,
  1843. "materialType": null,
  1844. "wllbClass": null,
  1845. "isNotDisable": null,
  1846. "isRecommend": null,
  1847. "partType": null,
  1848. "page": 0,
  1849. "limit": 0,
  1850. "amount": null,
  1851. "minNum": null,
  1852. "maxNum": null,
  1853. "modifyUser": null,
  1854. "modifyTime": null,
  1855. "typeVal": null,
  1856. "companyNumber": null,
  1857. "warehouseType": null,
  1858. "nameOrCode": null
  1859. },
  1860. {
  1861. "id": "65",
  1862. "code": "00050001",
  1863. "name": "人事关系部",
  1864. "tldId": "b822e50f-0c1f-4d92-ad38-c3cd5b778c51",
  1865. "specificationAndModel": null,
  1866. "unitOfMeasurement": null,
  1867. "materialId": null,
  1868. "num": null,
  1869. "type": null,
  1870. "tableName": null,
  1871. "size": null,
  1872. "materialType": null,
  1873. "wllbClass": null,
  1874. "isNotDisable": null,
  1875. "isRecommend": null,
  1876. "partType": null,
  1877. "page": 0,
  1878. "limit": 0,
  1879. "amount": null,
  1880. "minNum": null,
  1881. "maxNum": null,
  1882. "modifyUser": null,
  1883. "modifyTime": null,
  1884. "typeVal": null,
  1885. "companyNumber": null,
  1886. "warehouseType": null,
  1887. "nameOrCode": null
  1888. },
  1889. {
  1890. "id": "66",
  1891. "code": "00030009",
  1892. "name": "钣金折弯班组",
  1893. "tldId": "c77c453b-c3c2-48ff-b699-34347b5f9267",
  1894. "specificationAndModel": null,
  1895. "unitOfMeasurement": null,
  1896. "materialId": null,
  1897. "num": null,
  1898. "type": null,
  1899. "tableName": null,
  1900. "size": null,
  1901. "materialType": null,
  1902. "wllbClass": null,
  1903. "isNotDisable": null,
  1904. "isRecommend": null,
  1905. "partType": null,
  1906. "page": 0,
  1907. "limit": 0,
  1908. "amount": null,
  1909. "minNum": null,
  1910. "maxNum": null,
  1911. "modifyUser": null,
  1912. "modifyTime": null,
  1913. "typeVal": null,
  1914. "companyNumber": null,
  1915. "warehouseType": null,
  1916. "nameOrCode": null
  1917. },
  1918. {
  1919. "id": "67",
  1920. "code": "00030012",
  1921. "name": "一次线缆班组",
  1922. "tldId": "adc02169-ec1c-4699-9712-df72b5bd01a5",
  1923. "specificationAndModel": null,
  1924. "unitOfMeasurement": null,
  1925. "materialId": null,
  1926. "num": null,
  1927. "type": null,
  1928. "tableName": null,
  1929. "size": null,
  1930. "materialType": null,
  1931. "wllbClass": null,
  1932. "isNotDisable": null,
  1933. "isRecommend": null,
  1934. "partType": null,
  1935. "page": 0,
  1936. "limit": 0,
  1937. "amount": null,
  1938. "minNum": null,
  1939. "maxNum": null,
  1940. "modifyUser": null,
  1941. "modifyTime": null,
  1942. "typeVal": null,
  1943. "companyNumber": null,
  1944. "warehouseType": null,
  1945. "nameOrCode": null
  1946. },
  1947. {
  1948. "id": "68",
  1949. "code": "00060000",
  1950. "name": "工业工程中心(公共)",
  1951. "tldId": "9cfd4db4-f4a5-46a8-9f4c-c298c8ce0088",
  1952. "specificationAndModel": null,
  1953. "unitOfMeasurement": null,
  1954. "materialId": null,
  1955. "num": null,
  1956. "type": null,
  1957. "tableName": null,
  1958. "size": null,
  1959. "materialType": null,
  1960. "wllbClass": null,
  1961. "isNotDisable": null,
  1962. "isRecommend": null,
  1963. "partType": null,
  1964. "page": 0,
  1965. "limit": 0,
  1966. "amount": null,
  1967. "minNum": null,
  1968. "maxNum": null,
  1969. "modifyUser": null,
  1970. "modifyTime": null,
  1971. "typeVal": null,
  1972. "companyNumber": null,
  1973. "warehouseType": null,
  1974. "nameOrCode": null
  1975. },
  1976. {
  1977. "id": "69",
  1978. "code": "00060003",
  1979. "name": "金工工艺部",
  1980. "tldId": "8c3449dd-c23b-4a14-a481-11a046b664cc",
  1981. "specificationAndModel": null,
  1982. "unitOfMeasurement": null,
  1983. "materialId": null,
  1984. "num": null,
  1985. "type": null,
  1986. "tableName": null,
  1987. "size": null,
  1988. "materialType": null,
  1989. "wllbClass": null,
  1990. "isNotDisable": null,
  1991. "isRecommend": null,
  1992. "partType": null,
  1993. "page": 0,
  1994. "limit": 0,
  1995. "amount": null,
  1996. "minNum": null,
  1997. "maxNum": null,
  1998. "modifyUser": null,
  1999. "modifyTime": null,
  2000. "typeVal": null,
  2001. "companyNumber": null,
  2002. "warehouseType": null,
  2003. "nameOrCode": null
  2004. },
  2005. {
  2006. "id": "70",
  2007. "code": "00030004",
  2008. "name": "轮充充电机班组",
  2009. "tldId": "6df49ed2-1eec-476f-b075-e5e94665f8c0",
  2010. "specificationAndModel": null,
  2011. "unitOfMeasurement": null,
  2012. "materialId": null,
  2013. "num": null,
  2014. "type": null,
  2015. "tableName": null,
  2016. "size": null,
  2017. "materialType": null,
  2018. "wllbClass": null,
  2019. "isNotDisable": null,
  2020. "isRecommend": null,
  2021. "partType": null,
  2022. "page": 0,
  2023. "limit": 0,
  2024. "amount": null,
  2025. "minNum": null,
  2026. "maxNum": null,
  2027. "modifyUser": null,
  2028. "modifyTime": null,
  2029. "typeVal": null,
  2030. "companyNumber": null,
  2031. "warehouseType": null,
  2032. "nameOrCode": null
  2033. },
  2034. {
  2035. "id": "71",
  2036. "code": "00030001",
  2037. "name": "技术工艺部",
  2038. "tldId": "8783be4d-ec1c-4ad9-9c65-b987b5519cbc",
  2039. "specificationAndModel": null,
  2040. "unitOfMeasurement": null,
  2041. "materialId": null,
  2042. "num": null,
  2043. "type": null,
  2044. "tableName": null,
  2045. "size": null,
  2046. "materialType": null,
  2047. "wllbClass": null,
  2048. "isNotDisable": null,
  2049. "isRecommend": null,
  2050. "partType": null,
  2051. "page": 0,
  2052. "limit": 0,
  2053. "amount": null,
  2054. "minNum": null,
  2055. "maxNum": null,
  2056. "modifyUser": null,
  2057. "modifyTime": null,
  2058. "typeVal": null,
  2059. "companyNumber": null,
  2060. "warehouseType": null,
  2061. "nameOrCode": null
  2062. },
  2063. {
  2064. "id": "72",
  2065. "code": "00030002",
  2066. "name": "仓库管理部",
  2067. "tldId": "668c3528-9db2-405e-ba55-3e24521fcfe4",
  2068. "specificationAndModel": null,
  2069. "unitOfMeasurement": null,
  2070. "materialId": null,
  2071. "num": null,
  2072. "type": null,
  2073. "tableName": null,
  2074. "size": null,
  2075. "materialType": null,
  2076. "wllbClass": null,
  2077. "isNotDisable": null,
  2078. "isRecommend": null,
  2079. "partType": null,
  2080. "page": 0,
  2081. "limit": 0,
  2082. "amount": null,
  2083. "minNum": null,
  2084. "maxNum": null,
  2085. "modifyUser": null,
  2086. "modifyTime": null,
  2087. "typeVal": null,
  2088. "companyNumber": null,
  2089. "warehouseType": null,
  2090. "nameOrCode": null
  2091. },
  2092. {
  2093. "id": "73",
  2094. "code": "00030013",
  2095. "name": "二次线缆班组",
  2096. "tldId": "5e5e641b-c7a5-466e-8017-f249cf4f58bd",
  2097. "specificationAndModel": null,
  2098. "unitOfMeasurement": null,
  2099. "materialId": null,
  2100. "num": null,
  2101. "type": null,
  2102. "tableName": null,
  2103. "size": null,
  2104. "materialType": null,
  2105. "wllbClass": null,
  2106. "isNotDisable": null,
  2107. "isRecommend": null,
  2108. "partType": null,
  2109. "page": 0,
  2110. "limit": 0,
  2111. "amount": null,
  2112. "minNum": null,
  2113. "maxNum": null,
  2114. "modifyUser": null,
  2115. "modifyTime": null,
  2116. "typeVal": null,
  2117. "companyNumber": null,
  2118. "warehouseType": null,
  2119. "nameOrCode": null
  2120. },
  2121. {
  2122. "id": "74",
  2123. "code": "0004",
  2124. "name": "充电事业部(公共)",
  2125. "tldId": "4af4692e-bf94-4dde-abab-01a6301200ee",
  2126. "specificationAndModel": null,
  2127. "unitOfMeasurement": null,
  2128. "materialId": null,
  2129. "num": null,
  2130. "type": null,
  2131. "tableName": null,
  2132. "size": null,
  2133. "materialType": null,
  2134. "wllbClass": null,
  2135. "isNotDisable": null,
  2136. "isRecommend": null,
  2137. "partType": null,
  2138. "page": 0,
  2139. "limit": 0,
  2140. "amount": null,
  2141. "minNum": null,
  2142. "maxNum": null,
  2143. "modifyUser": null,
  2144. "modifyTime": null,
  2145. "typeVal": null,
  2146. "companyNumber": null,
  2147. "warehouseType": null,
  2148. "nameOrCode": null
  2149. },
  2150. {
  2151. "id": "75",
  2152. "code": "00030003",
  2153. "name": "单桩班组",
  2154. "tldId": "4e7df440-3868-4cf4-89fb-9078674bcf5b",
  2155. "specificationAndModel": null,
  2156. "unitOfMeasurement": null,
  2157. "materialId": null,
  2158. "num": null,
  2159. "type": null,
  2160. "tableName": null,
  2161. "size": null,
  2162. "materialType": null,
  2163. "wllbClass": null,
  2164. "isNotDisable": null,
  2165. "isRecommend": null,
  2166. "partType": null,
  2167. "page": 0,
  2168. "limit": 0,
  2169. "amount": null,
  2170. "minNum": null,
  2171. "maxNum": null,
  2172. "modifyUser": null,
  2173. "modifyTime": null,
  2174. "typeVal": null,
  2175. "companyNumber": null,
  2176. "warehouseType": null,
  2177. "nameOrCode": null
  2178. },
  2179. {
  2180. "id": "76",
  2181. "code": "00030008",
  2182. "name": "钣金冲床班组",
  2183. "tldId": "579efc8c-2367-44c4-9cb0-16a4ecdaaa87",
  2184. "specificationAndModel": null,
  2185. "unitOfMeasurement": null,
  2186. "materialId": null,
  2187. "num": null,
  2188. "type": null,
  2189. "tableName": null,
  2190. "size": null,
  2191. "materialType": null,
  2192. "wllbClass": null,
  2193. "isNotDisable": null,
  2194. "isRecommend": null,
  2195. "partType": null,
  2196. "page": 0,
  2197. "limit": 0,
  2198. "amount": null,
  2199. "minNum": null,
  2200. "maxNum": null,
  2201. "modifyUser": null,
  2202. "modifyTime": null,
  2203. "typeVal": null,
  2204. "companyNumber": null,
  2205. "warehouseType": null,
  2206. "nameOrCode": null
  2207. },
  2208. {
  2209. "id": "77",
  2210. "code": "00030005",
  2211. "name": "轮充终端班组",
  2212. "tldId": "44d2e2ad-eb0a-418b-97ce-ec0665a1640b",
  2213. "specificationAndModel": null,
  2214. "unitOfMeasurement": null,
  2215. "materialId": null,
  2216. "num": null,
  2217. "type": null,
  2218. "tableName": null,
  2219. "size": null,
  2220. "materialType": null,
  2221. "wllbClass": null,
  2222. "isNotDisable": null,
  2223. "isRecommend": null,
  2224. "partType": null,
  2225. "page": 0,
  2226. "limit": 0,
  2227. "amount": null,
  2228. "minNum": null,
  2229. "maxNum": null,
  2230. "modifyUser": null,
  2231. "modifyTime": null,
  2232. "typeVal": null,
  2233. "companyNumber": null,
  2234. "warehouseType": null,
  2235. "nameOrCode": null
  2236. },
  2237. {
  2238. "id": "78",
  2239. "code": "00020001",
  2240. "name": "充电质控部",
  2241. "tldId": "2f6eb928-2cb2-4843-a892-2f8b1cca7f4a",
  2242. "specificationAndModel": null,
  2243. "unitOfMeasurement": null,
  2244. "materialId": null,
  2245. "num": null,
  2246. "type": null,
  2247. "tableName": null,
  2248. "size": null,
  2249. "materialType": null,
  2250. "wllbClass": null,
  2251. "isNotDisable": null,
  2252. "isRecommend": null,
  2253. "partType": null,
  2254. "page": 0,
  2255. "limit": 0,
  2256. "amount": null,
  2257. "minNum": null,
  2258. "maxNum": null,
  2259. "modifyUser": null,
  2260. "modifyTime": null,
  2261. "typeVal": null,
  2262. "companyNumber": null,
  2263. "warehouseType": null,
  2264. "nameOrCode": null
  2265. },
  2266. {
  2267. "id": "79",
  2268. "code": "00010001",
  2269. "name": "订单执行部",
  2270. "tldId": "41dd4c4a-eaf7-4a5d-8372-811d591255bf",
  2271. "specificationAndModel": null,
  2272. "unitOfMeasurement": null,
  2273. "materialId": null,
  2274. "num": null,
  2275. "type": null,
  2276. "tableName": null,
  2277. "size": null,
  2278. "materialType": null,
  2279. "wllbClass": null,
  2280. "isNotDisable": null,
  2281. "isRecommend": null,
  2282. "partType": null,
  2283. "page": 0,
  2284. "limit": 0,
  2285. "amount": null,
  2286. "minNum": null,
  2287. "maxNum": null,
  2288. "modifyUser": null,
  2289. "modifyTime": null,
  2290. "typeVal": null,
  2291. "companyNumber": null,
  2292. "warehouseType": null,
  2293. "nameOrCode": null
  2294. },
  2295. {
  2296. "id": "80",
  2297. "code": "00030014",
  2298. "name": "发货班组",
  2299. "tldId": "2a6c6cfa-b149-4cab-8637-21ab46dde0ef",
  2300. "specificationAndModel": null,
  2301. "unitOfMeasurement": null,
  2302. "materialId": null,
  2303. "num": null,
  2304. "type": null,
  2305. "tableName": null,
  2306. "size": null,
  2307. "materialType": null,
  2308. "wllbClass": null,
  2309. "isNotDisable": null,
  2310. "isRecommend": null,
  2311. "partType": null,
  2312. "page": 0,
  2313. "limit": 0,
  2314. "amount": null,
  2315. "minNum": null,
  2316. "maxNum": null,
  2317. "modifyUser": null,
  2318. "modifyTime": null,
  2319. "typeVal": null,
  2320. "companyNumber": null,
  2321. "warehouseType": null,
  2322. "nameOrCode": null
  2323. },
  2324. {
  2325. "id": "81",
  2326. "code": "00030006",
  2327. "name": "金工产线",
  2328. "tldId": "030f6ca3-f391-4a45-8e23-ef389d569231",
  2329. "specificationAndModel": null,
  2330. "unitOfMeasurement": null,
  2331. "materialId": null,
  2332. "num": null,
  2333. "type": null,
  2334. "tableName": null,
  2335. "size": null,
  2336. "materialType": null,
  2337. "wllbClass": null,
  2338. "isNotDisable": null,
  2339. "isRecommend": null,
  2340. "partType": null,
  2341. "page": 0,
  2342. "limit": 0,
  2343. "amount": null,
  2344. "minNum": null,
  2345. "maxNum": null,
  2346. "modifyUser": null,
  2347. "modifyTime": null,
  2348. "typeVal": null,
  2349. "companyNumber": null,
  2350. "warehouseType": null,
  2351. "nameOrCode": null
  2352. },
  2353. {
  2354. "id": "82",
  2355. "code": "00030010",
  2356. "name": "喷塑班组",
  2357. "tldId": "1d9adc63-3762-4343-9d21-98a8bf186f71",
  2358. "specificationAndModel": null,
  2359. "unitOfMeasurement": null,
  2360. "materialId": null,
  2361. "num": null,
  2362. "type": null,
  2363. "tableName": null,
  2364. "size": null,
  2365. "materialType": null,
  2366. "wllbClass": null,
  2367. "isNotDisable": null,
  2368. "isRecommend": null,
  2369. "partType": null,
  2370. "page": 0,
  2371. "limit": 0,
  2372. "amount": null,
  2373. "minNum": null,
  2374. "maxNum": null,
  2375. "modifyUser": null,
  2376. "modifyTime": null,
  2377. "typeVal": null,
  2378. "companyNumber": null,
  2379. "warehouseType": null,
  2380. "nameOrCode": null
  2381. },
  2382. {
  2383. "id": "83",
  2384. "code": "00010002",
  2385. "name": "资源管理部",
  2386. "tldId": "004edbe1-3261-4058-bde8-d0027681192c",
  2387. "specificationAndModel": null,
  2388. "unitOfMeasurement": null,
  2389. "materialId": null,
  2390. "num": null,
  2391. "type": null,
  2392. "tableName": null,
  2393. "size": null,
  2394. "materialType": null,
  2395. "wllbClass": null,
  2396. "isNotDisable": null,
  2397. "isRecommend": null,
  2398. "partType": null,
  2399. "page": 0,
  2400. "limit": 0,
  2401. "amount": null,
  2402. "minNum": null,
  2403. "maxNum": null,
  2404. "modifyUser": null,
  2405. "modifyTime": null,
  2406. "typeVal": null,
  2407. "companyNumber": null,
  2408. "warehouseType": null,
  2409. "nameOrCode": null
  2410. }
  2411. ]
  2412. }