123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412 |
- {
- "msg": "200",
- "data": [
- {
- "id": "1",
- "code": "00029999",
- "name": "采购中心(公共) ",
- "tldId": "0d68dd8c-70db-4e7c-b1dc-d31e844420c6 ",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "2",
- "code": "000300010026",
- "name": "柜体组装班组",
- "tldId": "0f69d975-357d-4d5f-beda-0aa1aa20e43c",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "3",
- "code": "000300010014",
- "name": "箱变总装班组",
- "tldId": "16573501-9dec-42d1-bc1c-a80e0577f89f",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "4",
- "code": "000300010027",
- "name": "标准终端班组",
- "tldId": "02a95c2c-3140-4bcc-bced-fe8f188d69d5",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "5",
- "code": "000300030001",
- "name": "工艺部",
- "tldId": "2586c29c-6f43-446d-805f-0db10e3832ca",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "6",
- "code": "00010001",
- "name": "充电质控部",
- "tldId": "288dc27e-669d-4e65-b41b-895e6f8a9d7c",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "7",
- "code": "000300010009",
- "name": "焊接",
- "tldId": "30097351-37f7-4625-8d97-93d4bf60bf9d",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "8",
- "code": "000300010020",
- "name": "线边班组",
- "tldId": "3149a194-3d26-4ec9-a6e1-7e9eb39f7edd",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "9",
- "code": "000300020002",
- "name": "项目管理部",
- "tldId": "34411112-e2ef-4a64-9ff1-5561417dec34",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "10",
- "code": "000300010024",
- "name": "直流柜班组",
- "tldId": "350209f7-7f77-4522-a363-5965e6477279",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "11",
- "code": "000300010002",
- "name": "钣金冲床班组",
- "tldId": "37c46fef-772f-4528-bc88-72706daf49a6",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "12",
- "code": "000300010029",
- "name": "生产管理部",
- "tldId": "37ec6b36-15fb-4459-83c8-7275df2c7d0f",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "13",
- "code": "000300010018",
- "name": "交直流班组",
- "tldId": "2daa158d-d784-426b-85aa-4e8eb853848a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "14",
- "code": "00070001",
- "name": "数字化驱动中心",
- "tldId": "2e4eaca1-9c2e-4275-9767-1fc32bdd1cac",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "15",
- "code": "000300010016",
- "name": "钣金折弯班组",
- "tldId": "428f29fb-d62a-450f-96fc-281c349256e0",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "16",
- "code": "00080003",
- "name": "精益部",
- "tldId": "501d8ca6-a07c-4d56-80da-e87cf1355433",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "17",
- "code": "000300010022",
- "name": "二次线缆班组",
- "tldId": "503f6ada-ee15-4558-825f-de95180af8c4",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "18",
- "code": "00080004",
- "name": "金工工艺部",
- "tldId": "50f214bf-ac9a-4961-9355-a90979ac70da",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "19",
- "code": "000300010008",
- "name": "柜体",
- "tldId": "5281e092-7a76-4355-9320-1cdc9ec9498e",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "20",
- "code": "000300030002",
- "name": "技术部",
- "tldId": "563d85f2-7c62-4b0c-b75e-5a2f85cb4c00",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "21",
- "code": "00090000",
- "name": "供应链中心(公共)",
- "tldId": "568c10e7-11e6-4078-a467-f0e47a9fabe1",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "22",
- "code": "00040001",
- "name": "售后服务部(公共)",
- "tldId": "482073eb-0b3a-443d-8478-ad5fa37066c3",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "23",
- "code": "00080002",
- "name": "综合工艺部",
- "tldId": "582786f8-bf88-49d9-aa2f-6046ac56ee02",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "24",
- "code": "1100Z10008",
- "name": "金工车间",
- "tldId": "59dfd3d7-f1c9-4edb-8d3b-abbd3702deef",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "25",
- "code": "000300010019",
- "name": "轮充充电机班组",
- "tldId": "5e96df93-3299-48aa-817a-fee32a18f3c4",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "26",
- "code": "1100Z10010",
- "name": "总控箱产线",
- "tldId": "5efc6ebf-f48d-4982-9479-78df75ef24ab",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "27",
- "code": "00080001",
- "name": "群充工艺部",
- "tldId": "6522ee3e-1122-48bd-9086-738c30b5e3b1",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "28",
- "code": "00050001",
- "name": "综合办公室(公共)",
- "tldId": "78cd1bc6-dce5-48d7-80d5-9eae0cd1f04d",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "29",
- "code": "000300010010",
- "name": "喷塑班组",
- "tldId": "7b7a9c57-df8a-4e48-89c1-675acebb167d",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "30",
- "code": "000300010001",
- "name": "安全管理",
- "tldId": "7ecd29ae-2b20-424b-aeb6-55d3925065ac",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "31",
- "code": "00020001",
- "name": "资源管理部",
- "tldId": "7f2a7984-7a45-4fad-8fa3-3394587b2628",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "32",
- "code": "00020002",
- "name": "资源采购部",
- "tldId": "816e5c5f-7207-46aa-a1c9-368e00abb9cb",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "33",
- "code": "000300010003",
- "name": "车间管理",
- "tldId": "8320f770-dd80-49c7-bfab-eb233436bb5a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "34",
- "code": "000300020001",
- "name": "仓库管理部",
- "tldId": "6d73dcc4-670a-4841-89e6-908dfafbae92",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "35",
- "code": "000300010021",
- "name": "一次线缆班组",
- "tldId": "8aa23777-16e9-444c-81ae-9fc8cff7581d",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "36",
- "code": "000300010013",
- "name": "物流配送班组",
- "tldId": "95ffe8c0-8e2b-4d88-af48-2a7cd2236588",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "37",
- "code": "00020004",
- "name": "订单执行部",
- "tldId": "982b3aed-e5a8-481a-af5d-a491c6acb2b1",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "38",
- "code": "00080000",
- "name": "工业工程中心(公共)",
- "tldId": "a7601f4d-4453-46bf-9d66-4535329e2b69",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "39",
- "code": "00100000",
- "name": "IT基础服务中心(公共)",
- "tldId": "bbeecb1a-e488-4eed-8540-a495d217a8a4",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "40",
- "code": "00020003",
- "name": "供应商管理部",
- "tldId": "bd42efbe-4632-4075-9e49-06d9fdf40919",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "41",
- "code": "000300010007",
- "name": "高低压班组",
- "tldId": "c23ff53c-45df-4b38-85b6-a88a54881622",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "42",
- "code": "00060001",
- "name": "人事关系部",
- "tldId": "c52ec948-08c3-4371-a459-1b6c03ad1b9f",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "43",
- "code": "000300010005",
- "name": "发货班组",
- "tldId": "ae273904-af72-404d-b93e-767cf0db7a91",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "44",
- "code": "000300010004",
- "name": "单桩终端",
- "tldId": "cb037bec-e55e-466f-9c73-8230bec553bf",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "45",
- "code": "000300010023",
- "name": "物料配送部",
- "tldId": "cca56b21-bbc2-4c0c-b3ac-180c1fe65633",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "46",
- "code": "00019999",
- "name": "质量管理中心(公共)",
- "tldId": "cfae97b5-3ddc-40f1-a705-b386ce45a668",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "47",
- "code": "00039999",
- "name": "充电设备事业部(公共)",
- "tldId": "d73da88d-920e-4814-aa68-2f45beea47cb",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "48",
- "code": "000300010017",
- "name": "临时班组",
- "tldId": "da3b57d5-52fd-4859-8a8c-2233d88e5006",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "49",
- "code": "000300010028",
- "name": "箱体组装班组",
- "tldId": "dd14ad3c-3dc1-45f5-8bf2-840bec24d003",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "50",
- "code": "1100Z10011",
- "name": "单桩产线",
- "tldId": "e556fbd7-3c87-4fe8-b3ce-b641ec23aa50",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "51",
- "code": "1100Z10009",
- "name": "充电箱变产线",
- "tldId": "ec8ed72d-87c2-4443-9116-52bd786d1172",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "52",
- "code": "000300010006",
- "name": "辅助班组",
- "tldId": "ed1e1420-f4f3-48a4-9a40-b3e8da565002",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "53",
- "code": "0099",
- "name": "财务部",
- "tldId": "ed66dd6c-30e3-4126-b27d-15d84d48cbe9",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "54",
- "code": "000300010025",
- "name": "轮充终端班组",
- "tldId": "ee24d8fe-af23-489e-b92e-866a96744a9a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "55",
- "code": "000300010011",
- "name": "铜排班组",
- "tldId": "f056c2f7-6056-471f-af2c-6b08d122ad6a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "56",
- "code": "000300010015",
- "name": "总控箱班组",
- "tldId": "f3b31af8-1c21-4c39-a5b4-430bd7ba7f5c",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "57",
- "code": "000300010012",
- "name": "涂装班组",
- "tldId": "f4fe80c4-0f13-43ce-bec5-25defebf3d13",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "58",
- "code": "00050002",
- "name": "特种兵",
- "tldId": "f611ac46-bd4b-47e6-b99c-43f58bcc5e6a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "59",
- "code": "00010002",
- "name": "质量保证部",
- "tldId": "f6de3d75-683e-4fe1-bcf2-9856a6f886b4",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "60",
- "code": "00130001",
- "name": "行政支持部",
- "tldId": "fd6e2993-4213-4376-996a-cab54472b7b0",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "61",
- "code": "00030011",
- "name": "柜体组装班组",
- "tldId": "ed5b1363-02cf-4063-8e0a-07802264c859",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "62",
- "code": "00060001",
- "name": "综合工艺部",
- "tldId": "d0051198-392d-428d-8eea-088d346192e2",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "63",
- "code": "00030007",
- "name": "焊接班组",
- "tldId": "d2ec7b0e-2a58-4fd5-a1e4-25d9bd40ad59",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "64",
- "code": "00070001",
- "name": "行政支持部",
- "tldId": "cc9ad321-e0a8-46ed-a3b2-5aadcfebe5ff",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "65",
- "code": "00050001",
- "name": "人事关系部",
- "tldId": "b822e50f-0c1f-4d92-ad38-c3cd5b778c51",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "66",
- "code": "00030009",
- "name": "钣金折弯班组",
- "tldId": "c77c453b-c3c2-48ff-b699-34347b5f9267",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "67",
- "code": "00030012",
- "name": "一次线缆班组",
- "tldId": "adc02169-ec1c-4699-9712-df72b5bd01a5",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "68",
- "code": "00060000",
- "name": "工业工程中心(公共)",
- "tldId": "9cfd4db4-f4a5-46a8-9f4c-c298c8ce0088",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "69",
- "code": "00060003",
- "name": "金工工艺部",
- "tldId": "8c3449dd-c23b-4a14-a481-11a046b664cc",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "70",
- "code": "00030004",
- "name": "轮充充电机班组",
- "tldId": "6df49ed2-1eec-476f-b075-e5e94665f8c0",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "71",
- "code": "00030001",
- "name": "技术工艺部",
- "tldId": "8783be4d-ec1c-4ad9-9c65-b987b5519cbc",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "72",
- "code": "00030002",
- "name": "仓库管理部",
- "tldId": "668c3528-9db2-405e-ba55-3e24521fcfe4",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "73",
- "code": "00030013",
- "name": "二次线缆班组",
- "tldId": "5e5e641b-c7a5-466e-8017-f249cf4f58bd",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "74",
- "code": "0004",
- "name": "充电事业部(公共)",
- "tldId": "4af4692e-bf94-4dde-abab-01a6301200ee",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "75",
- "code": "00030003",
- "name": "单桩班组",
- "tldId": "4e7df440-3868-4cf4-89fb-9078674bcf5b",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "76",
- "code": "00030008",
- "name": "钣金冲床班组",
- "tldId": "579efc8c-2367-44c4-9cb0-16a4ecdaaa87",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "77",
- "code": "00030005",
- "name": "轮充终端班组",
- "tldId": "44d2e2ad-eb0a-418b-97ce-ec0665a1640b",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "78",
- "code": "00020001",
- "name": "充电质控部",
- "tldId": "2f6eb928-2cb2-4843-a892-2f8b1cca7f4a",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "79",
- "code": "00010001",
- "name": "订单执行部",
- "tldId": "41dd4c4a-eaf7-4a5d-8372-811d591255bf",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "80",
- "code": "00030014",
- "name": "发货班组",
- "tldId": "2a6c6cfa-b149-4cab-8637-21ab46dde0ef",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "81",
- "code": "00030006",
- "name": "金工产线",
- "tldId": "030f6ca3-f391-4a45-8e23-ef389d569231",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "82",
- "code": "00030010",
- "name": "喷塑班组",
- "tldId": "1d9adc63-3762-4343-9d21-98a8bf186f71",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- },
- {
- "id": "83",
- "code": "00010002",
- "name": "资源管理部",
- "tldId": "004edbe1-3261-4058-bde8-d0027681192c",
- "specificationAndModel": null,
- "unitOfMeasurement": null,
- "materialId": null,
- "num": null,
- "type": null,
- "tableName": null,
- "size": null,
- "materialType": null,
- "wllbClass": null,
- "isNotDisable": null,
- "isRecommend": null,
- "partType": null,
- "page": 0,
- "limit": 0,
- "amount": null,
- "minNum": null,
- "maxNum": null,
- "modifyUser": null,
- "modifyTime": null,
- "typeVal": null,
- "companyNumber": null,
- "warehouseType": null,
- "nameOrCode": null
- }
- ]
- }
|